What will the code below print when it is executed?
int x = 3, y = 4;
if (x = 4)
y = 5;
else
y = 2;
printf ("x=%d, y=%d
",x,y);
No Answer is Posted For this Question
Be the First to Post Answer
What are void pointers in c?
Why is c not oop?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is the newline escape sequence?
Function to find the given number is a power of 2 or not?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
Is main() function predfined or userdefined?
Explain how do you print an address?
Describe the modifier in c?
What is sizeof return in c?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What are the rules for identifiers in c?