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


Please Help Members By Posting Answers For Below Questions

How can I find out the size of a file, prior to reading it in?

628


What is the condition that is applied with ?: Operator?

667


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

678


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2005


Do you have any idea about the use of "auto" keyword?

670






How do you sort filenames in a directory?

719


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

769


Explain two-dimensional array.

633


What is meant by 'bit masking'?

890


How can a program be made to print the line number where an error occurs?

656


What is call by reference in functions?

573


What is f'n in math?

623


What is new line escape sequence?

814


What is sizeof int in c?

608


Explain the red-black trees?

611