1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int p;
p = 15 + 13 * 6;
cout << p;
return 0;
}

A. 93
B. 15
C. 13
D. 6
E. None of these
Answer» B. 15


Discussion

No Comment Found

Related MCQs