This commit is contained in:
Radek 2022-06-07 23:00:08 +02:00
commit 12b88e4ddc

3
main.c
View File

@ -5,5 +5,8 @@
int main (void) int main (void)
{ {
puts ("Hello World!"); puts ("Hello World!");
int a = 0;
int b = 2;
int c = a + b;
return 0; return 0;
} }