main()
{
intx=2,y=6,z=6;
x=y=z;
printf(%d",x)
}
Answer Posted / kdedman.kan
x=6 , because its the latest value.
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
Explain bitwise shift operators?
Can you think of a logic behind the game minesweeper.
What is the size of empty structure in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What are void pointers in c?
What is the meaning of && in c?
Compare interpreters and compilers.
what is the format specifier for printing a pointer value?
What is the purpose of scanf() and printf() functions?
What is the purpose of sprintf() function?
Distinguish between actual and formal arguments.
formula to convert 2500mmh2o into m3/hr
why do some people write if(0 == x) instead of if(x == 0)?
What is the basic structure of c?
Why clrscr is used in c?