Testowe_Pierwsze/main.c
2022-06-07 23:00:08 +02:00

12 lines
146 B
C

#include <stdio.h>
// szybkie dodawanie
int main (void)
{
puts ("Hello World!");
int a = 0;
int b = 2;
int c = a + b;
return 0;
}