Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #107.48K
~5K People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for oggiemc

#include <stdio.h> #include <stdlib.h> int main() FILE *fptr; fptr = fopen ("data1.csv", "w"); int x, power2; if (fptr = NULL) printf("File cannot be opened\n"); exit(1); for(x = 1; x <= 100; x++) power2 = x*x; fprintf(fptr, "%d\n", power2); fclose(fptr); Hi everyone. Im trying to write into excel through c programming. …

Member Avatar for Mohd Iszamir
0
5K