M
Q. What will be the output of the following code snippet?
#include <stdio.h> void solve() { int x = 1, y = 2; printf(x > y ? "Greater" : x == y ? "Equal" : "Lesser"); } int main() { solve(); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. An uninitialized pointer in C is called ___
Q. C was developed in the year ___
Q. How many expressions can be checked using if...elseif...else statement?
Q. C is a which level language?
Q. The correct syntax for running two variable for loop simultaneously is
Q. What will be the output of the following program ?
Q. The worst case time complexity of AVL tree is better in comparison to binary search tree for
Discusssion
Login to discuss.