x=y=z=1
z=++x||++y&&++z
Printf("%%%d";xyz)
what is the values of x,y and z?????
Answer Posted / tatukula
x=2
y=1
z=1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
write a program to concatenation the string using switch case?
What are the types of pointers?
What is the use of bitwise operator?
What is array in C
What are 'near' and 'far' pointers?
When should you use a type cast?
Give differences between - new and malloc() , delete and free() ?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is echo in c programming?
What is the difference between null pointer and wild pointer?
Is using exit() the same as using return?
What are different types of operators?
What is pointer to pointer in c with example?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is the mean of function?