x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / anand n
Ans:1
x=2,y=6,z=6//here x value is:2
x=y==z;//x=6 and y=6 so x is equal to y means its true,now
//x value is 1
printf(%d",x)
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is string constants?
Differentiate between #include<...> and #include '...'
What is operator promotion?
What is merge sort in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How can you find the day of the week given the date?
What are disadvantages of C language.
Write a program to reverse a linked list in c.
Where are c variables stored in memory?
Differentiate between null and void pointers.
What type of function is main ()?
Is c is a procedural language?
What does %c mean in c?
What is the difference between the = symbol and == symbol?