এই প্রোগ্রামে, আমরা র্যান্ডম সংখ্যা যোগ করছি যা 0 থেকে 100 এর মধ্যে তৈরি হয়।
প্রতি রানটাইমের পরে, এলোমেলো সংখ্যার যোগফলের ফলাফল ভিন্ন হয়, অর্থাৎ, আমরা প্রতিটি সম্পাদনের জন্য একটি ভিন্ন ফলাফল পাই।
0 থেকে 100 এর মধ্যে এলোমেলো সংখ্যার যোগফল গণনা করতে আমরা যে যুক্তি ব্যবহার করি তা হল −
for(i = 0; i <=99; i++){ // Storing random numbers in an array. num[i] = rand() % 100 + 1; // calculating the sum of the random numbers. sum+= num[i]; }
প্রথমত, আমরা এলোমেলো সংখ্যার যোগফল গণনা করি এবং সেই যোগফলকে একটি ফাইলে সংরক্ষণ করি। সেই ওপেন ফাইলের জন্য লিখুন খুলুন এবং fprintf ব্যবহার করে অ্যারে ফাইলে যোগফল যোগ করুন।
fprintf(fptr, "Total sum of the array is %d\n", sum); //appending sum to the array file.
উদাহরণ
#include<stdio.h> #include<stdlib.h> #include<time.h> #define max 100 // Declaring the main function in the main header. int main(void){ srand(time(0)); int i; int sum = 0, num[max]; FILE *fptr; // Declaring the loop to generate 100 random numbers for(i = 0; i <=99; i++){ // Storing random numbers in an array. num[i] = rand() % 100 + 1; // calculating the sum of the random numbers. sum+= num[i]; } // intializing the file node with the right node. fptr = fopen("numbers.txt", "w"); // cheching if the file pointer is null, check if we are going to exit or not. if(fptr == NULL){ printf("Error!"); exit(1); } fprintf(fptr, "Total sum of the array is %d\n", sum); // appending sum to the array file. fclose(fptr); // closing the file pointer }
আউটপুট
Run 1: Total sum of the array is 5224 Run 2: Total sum of the array is 5555 Note: after executing a text file is created in the same folder with number.txt We have to open it; there we can see the sum of random numbers.