Which operator or command is used to add number?
Answers
Answered by
0
Answer:
" + "operator is used for adding two or more numbers.
Explanation:
By using C Program
//Sum of two numbers.
#include<stdio.h>
int main( ) {
int a,b,c;
printf("Enter two numbers:");
scanf("%d,%d,&a,&b");
c=a+b; //Addition
printf("Addition of %d and %d is : %d",a,b,c);
return 0;
}
Similar questions
Physics,
2 days ago
Math,
2 days ago
Geography,
2 days ago
Computer Science,
5 days ago
Math,
5 days ago
English,
8 months ago
India Languages,
8 months ago