move exercises and lectures into subfolders

This commit is contained in:
2023-10-15 15:34:53 +01:00
parent 775b4bd643
commit 74092a17aa
177 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#include <stdio.h>
#include <stdlib.h>
int main()
{
int i;
char FileName[100];
for ( i = 1 ; i < 10 ; i++)
{
//'Print' text into string
sprintf(FileName , "file%d.dat" , i);
// Sidplay the name created
printf("Current file name: %s\n", FileName);
}
return 0;
}