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
Are negative numbers true in c?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What is a stream water?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
Explain pointer. What are function pointers in C?
What are structures and unions? State differencves between them.
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What is preprocessor with example?
What is the method to save data in stack data structure type?
What is the symbol indicated the c-preprocessor?
What is difference between structure and union with example?
What is far pointer in c?