Q. What is the output of the C Program?
Code:int main()
{
int a=0;
a = 14%-5 - 2;
printf("%d", a);
return 0;
}
β
Correct Answer: (D)
2
int main()
{
int a=0;
a = 14%-5 - 2;
printf("%d", a);
return 0;
}
You must be Logged in to update hint/solution