Looking For Anything Specific?

ads header

C Program to find sum of two numbers | C Programming Questions - Code With Manshi

 Program 
#include<stdio.h>
#include<conio.h>
void main()
{
    int a=5, b=5, c=a+b;
    clrscr();
    printf("Sum of Two Numbers = %d",c);
    getch();
}

 Output 
Sum of Two Numbers = 10

Post a Comment

2 Comments

If You Have Any Doubt, Please Let Me Know,