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
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
How can you be sure that a program follows the ANSI C standard?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is the auto keyword good for?
List the difference between a While & Do While loops?
What are the types of functions in c?
What is a macro in c preprocessor?
What are the different data types in C?
How can I split up a string into whitespace-separated fields?
Which is better malloc or calloc?
How to define structures? ·
Is main is user defined function?
How do I determine whether a character is numeric, alphabetic, and so on?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the sizeof () operator?