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
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is sizeof array?
How are strings stored in c?
How do you declare a variable that will hold string values?
What is output redirection?
How does #define work?
Explain the use of 'auto' keyword
What is a pragma?
When can a far pointer be used?
How can I run c program?
Can a local variable be volatile in c?
explain what are actual arguments?
What is the purpose of main() function?
What are the standard predefined macros?
How many parameters should a function have?