output for following code???
main()
{
int x=2,y,z;
x*=3+2;
printf("1.%d\n",x);
x*=y=z=4;
printf("2.%d %d %d\n",x,y,z);
x=y==z;
printf("3.%d\n",x);
x==(y=z);
printf("%d",x);
}
Answer Posted / nandhini
1.10
2.40
3.4
4
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What are structural members?
Tell me with an example the self-referential structure?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is the use of structure padding in c?
Can variables be declared anywhere in c?
Why we use void main in c?
What is the meaning of typedef struct in c?
How many header files are in c?
What is bss in c?
Can we change the value of constant variable in c?
Which type of language is c?
How do c compilers work?
What is optimization in c?
How can a string be converted to a number?