A
Q. What will be output for the following code?
Code:
#include <stdio.h>
int main()
{
double a = 5 % 3 & 4 + 5 * 6;
printf(""%lf"", a);
}
int main()
{
double a = 5 % 3 & 4 + 5 * 6;
printf(""%lf"", a);
}
- Correct Answer - Option(C)
- Views: 23
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.