Computer Science, asked by manjubijoy1514, 5 days ago

Which operator or command is used to add number?

Answers

Answered by neharajput05022002
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