A
Q. What will be the output of the following C code snippet?
Code:
#include <stdio.h>
void main()
{
1 < 2 ? return 1: return 2;
}
void main()
{
1 < 2 ? return 1: return 2;
}
- Correct Answer - Option(D)
- Views: 29
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.