Compare commits

..

4 Commits

Author SHA1 Message Date
Radek
12b88e4ddc laczenie 2022-06-07 23:00:08 +02:00
Radek
77434cc7b5 komentarz co ma robic program 2022-06-07 22:54:25 +02:00
Radek
d155873fd6 dodanie sumowania 2022-06-07 22:52:02 +02:00
Radek
9b871c013a dodanie zmiennych 2022-06-07 22:51:30 +02:00

5
main.c
View File

@ -1,7 +1,12 @@
#include <stdio.h> #include <stdio.h>
// szybkie dodawanie
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;
} }