toplama örneği

This commit is contained in:
Mert Gör 🇹🇷 2025-03-18 14:02:23 +03:00
parent 9ff74b5bf4
commit b8f22cf5bd
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

13
c-basic/toplama.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main()
{
int a , b , c;
a = 10;
b = 20;
c = a + b;
printf("C = %d", c);
return 0;
}