Testowe_Pierwsze/main.c

10 lines
124 B
C
Raw Normal View History

2022-06-07 22:46:49 +02:00
#include <stdio.h>
int main (void)
{
puts ("Hello World!");
2022-06-07 22:51:30 +02:00
int a = 0;
2022-06-07 22:52:02 +02:00
int b = 2;
int c = a + b;
2022-06-07 22:46:49 +02:00
return 0;
}