dodanie sumowania

This commit is contained in:
Radek 2022-06-07 22:52:02 +02:00
parent 9b871c013a
commit d155873fd6

3
main.c
View File

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