Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Student. Txt
//gcc 5.4.0 #include <stdio.h> int main() { char name[50]; int marks, i, num; printf("Enter number of students: "); scanf("%d", &num); FILE *fptr; fptr = (fopen("C:\\student.txt", "a+")); if(fptr == NULL) { printf("Error!"); exit(1); } for(i = 0; i < num; ++i) { printf("For student%d\nEnter name: ", i+1); scanf("%s", name); printf("Enter marks: "); scanf("%d", &marks); fprintf(fptr,"\nName: %s \nMarks=%d \n", name, marks); } fclose(fptr); return 0; }
run
|
edit
|
history
|
help
0
finalpyramid
A_141212_IntercambiarValores
MATRICES TRIANGULARES
1.8 Parallizing for loop
Code2
18BCE2182 ASSESS_1 Q1-4
ATM
MEMORy eRROR
B_141202_CTYPE
palindrome.c