100-Days-Of-Code/C_Programming_Projects/intoduction.c

9 lines
114 B
C

#include<stdio.h>
int main()
{
int a,b,sum;
a = 5;
b = 4;
sum = a + b;
}