Testowe_Pierwsze/main.c

9 lines
106 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;
int b = 0;
2022-06-07 22:46:49 +02:00
return 0;
}