Q.

#include <iostream>
using namespace std;
int main()
{
int a;
a = 5 + 3 * 5;
cout <<a; return 0;
}

A. 35
B. 20
C. 25
D. 30
Answer» B. 20
3.1k
1
Do you find this helpful?
30

Discussion

Ali Arshad
1 year ago

#include
using namespace std;
int main(){
int n=5;
for(int i=1;i n=n*i;
}
cout<<"result is:"< return 0;
}
why output is not right of this?
0

Related MCQs