K
Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int main()
{
printf((43 > 43) ? "value 1 is greater!" : "value 1 is not greater!");
return 0;
}
int main()
{
printf((43 > 43) ? "value 1 is greater!" : "value 1 is not greater!");
return 0;
}
- Correct Answer - Option(A)
- Views: 216
- Filed under category C Programming
Discusssion
Login to discuss.