Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int b = 5 + 7 * 4 – 9 * (3, 2);
printf(“%d”, b);
}

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int b = 5 + 7 * 4 – 9 * (3, 2);
printf(“%d”, b);
}
a) 6
b) 15
c) 13
d) 21

Answer: b

Join The Discussion