toplama örneği
This commit is contained in:
parent
9ff74b5bf4
commit
b8f22cf5bd
1 changed files with 13 additions and 0 deletions
13
c-basic/toplama.c
Normal file
13
c-basic/toplama.c
Normal 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;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue