Computer Science, asked by shubhamvharamble28, 6 months ago

State output of the following
#include <iostream.h>
void main ( ) {
typedef int num;
num a=10, b=15;
num c=a+b+a-b; cout << c;
}​

Answers

Answered by riditkumar919
2

Answer:

output : 20

c= 10+15+10-15

c=20

Similar questions