Program to find sum of two numbers
C Programming Language / Overview of C Language
1177Program:
#include
#include
void main()
{
int a,b,s;
printf("Enter two no: ");
scanf("%d%d",&a,&b);
s=a+b;
printf("sum=%d \n",s);
}
Output:
Enter two no: 5 10 sum=15 Press any key to continue . . .
Explanation:
We take two number 5 and 10
output=(5+10)=15
This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS