config.h tests

This commit is contained in:
Venelin
2024-04-26 18:50:25 +03:00
parent 6dbe37e07b
commit a8fb5f7d3d
12 changed files with 118 additions and 42 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <stdio.h>
int main()
{
char s[16];
scanf("%s", s);
printf("%s\n", s);
return 0;
}