What is the output of #include Void main()
{
Typedef int num;
num a = 10, b = 15;
num c = a + b + a - b ;
cout << c;
}
Answers
Answered by
2
Answer:
it's 25 .....in your console
Similar questions