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 – 4 + 2 * 5;
printf(“%d”, b);
}

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

Answer: c

Join The Discussion