Table of ContentC Program to print table of n and square of n using pow()C Program to find Factorial of Number without using functionProgram to Print All ASCII Value Table in C ProgrammingProgram to Check Whether Number is Perfect Or NotPrograms Check Whether Number is Prime or notCheck Whether Given Number is Palindrome or Not ????Find Factorial of Number Using RecursionC Program to Solve Second Order Quadratic EquationC Program To Print First 10 Natural NumbersC Program to generate the Fibonacci Series starting from any two numbersC Program to find sum of two numbersC Program to Calculate Area and Circumference of circleC Program to find the simple interestC Program to Convert temperature from degree centigrade to FahrenheitC Program to calculate sum of 5 subjects and find percentageC Program to reverse a given number !C Program to calculate gross salary of a person.C Program to find greatest in 3 numbersC program to reads customer number and power consumed and prints amount to be paidC program to read the values of x, y and z and print the results expressions in one line.C Program to find exponent Power Series !!C Program to Compute sum of the array elements using pointers ! C Program to find sum of two numbers Pooja2014-08-02T18:38:03+00:00 Program : C Program to find sum of two numbers #include<stdio.h> int main() { int a, b, sum; printf("\nEnter two no: "); scanf("%d %d", &a, &b); sum = a + b; printf("Sum : %d", sum); return(0); } 1234567891011121314 #include<stdio.h> int main() { int a, b, sum; printf("\nEnter two no: "); scanf("%d %d", &a, &b); sum = a + b; printf("Sum : %d", sum); return(0);} Output : Enter two no: 5 6 Sum : 11 12 Enter two no: 5 6Sum : 11