x=y=z=1
z=++x||++y&&++z
Printf("%%%d";xyz)
what is the values of x,y and z?????
Answer Posted / lordferrous
The answer is
x=2
y=1
z=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the benefit of using #define to declare a constant?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Do array subscripts always start with zero?
What is nested structure?
What is the best way of making my program efficient?
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
What is the purpose of main() function?
How can I insert or delete a line (or record) in the middle of a file?
What is function prototype in c language?
Suggesting that there can be 62 seconds in a minute?
What are logical errors and how does it differ from syntax errors?
Explain how do you list files in a directory?
What is the usage of the pointer in c?
How can I do serial ("comm") port I/O?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory