This commit is contained in:
2023-09-23 22:20:41 +03:00
parent 609aa52e66
commit 66997adad5
42 changed files with 642 additions and 0 deletions

14
fgets.c Executable file
View File

@ -0,0 +1,14 @@
#include <stdio.h>
int main() {
int test1;
char test2[50];
char test3[50];
printf("Test box! : ");
fgets(test2, sizeof(test2), stdin);
printf("WORKING! : %s", test2);
printf("TEST2! : ");
fgets(test3, sizeof(test3), stdin);
printf("WORKING2!: %s", test3);
return 0;
}