#include using namespace std; int main() { int p; p = 15 + 13 * 6; cout << p; return 0; }
Because the * operator is having highest precedence, So it is executed first and then the + operator will be executed.
Previous Question Next Question
Your comments will be displayed only after manual approval.