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 is d scanf?
What is the difference between malloc() and calloc()?
ATM machine and railway reservation class/object diagram
In which area global, external variables are stored?
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,
is assignment operator is arithmatic or not
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
Combinations of fibanocci prime series
What are the advantages of Macro over function?
why do we use pointer instead directly acessing the data?
What is getch c?
How can I access a memory located at certain address?