x=y=z=1
z=++x||++y&&++z
Printf("%%%d";xyz)
what is the values of x,y and z?????
Answer Posted / merugu srinivas
x=2;
y=2;
z=2;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Describe the order of precedence with regards to operators in C.
What is c definition?
Can main () be called recursively?
What is pass by value in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Why is c so powerful?
What is a constant and types of constants in c?
What is the difference between array_name and &array_name?
What does %p mean?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why is a semicolon (;) put at the end of every program statement?
What kind of structure is a house?
Which one would you prefer - a macro or a function?