C Program to add 2 given numbers.

 #include<stdio.h>

void main()


{

int num1=100;

int num2=200;

int sum;

sum=num1+num2;

printf(" \n sum of two no. is : %d",sum);

}

The output is:-

Post a Comment

0 Comments