Changeset 114 for trunk/Softwares/Test/Test_067/src
- Timestamp:
- Apr 17, 2009, 12:35:37 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Softwares/Test/Test_067/src/c/main.c
r112 r114 14 14 int main() 15 15 { 16 FILE * file = fopen("Test_067.txt","w"); 17 18 if (file == NULL) 19 exit (1); 20 21 fprintf(file,"Hello World !!!\n"); 22 23 if (fclose (file) != 0) 24 exit (2); 16 for (int i=0; i<10; ++i) 17 printf("i : %d\n",i); 25 18 26 19 exit (0);
Note: See TracChangeset
for help on using the changeset viewer.