move exercises and lectures into subfolders
This commit is contained in:
10
Exercises/C3/hello_world.c
Normal file
10
Exercises/C3/hello_world.c
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
/* My first program */
|
||||
int main(void)
|
||||
{
|
||||
// This is a single line of comment
|
||||
printf("Hello World\n");
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user