added weekly exercises of isp-ws25

This commit is contained in:
2026-04-13 19:02:19 +02:00
parent c51e836ed9
commit 00fdd31a18
28 changed files with 1835 additions and 0 deletions

View 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;
}