Skip to content

Commit 334655f

Browse files
author
cowl2451
authored
add
1 parent 083926c commit 334655f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

addtwonumbers.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//ADD TWO NUMBERS (FIXED)
2+
#include<stdio.h>
3+
int main()
4+
{
5+
int A=10,B=500,C; //variables
6+
C=A+B;
7+
printf("the result is %d",C);
8+
9+
}
10+

0 commit comments

Comments
 (0)