added weekly exercises of isp-ws25
This commit is contained in:
13
c/isp-ws25/weeklies/week01/w01ex01.c
Executable file
13
c/isp-ws25/weeklies/week01/w01ex01.c
Executable file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
Exercise 01:
|
||||
Get familiar with coding.
|
||||
Create a program that displays "Hello World!"
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
printf("Hello World!");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user