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 / manikanta

1.10
2.40 4 4
3.1
1

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none

704


Write a program to check prime number in c programming?

590


Explain what are the advantages and disadvantages of a heap?

590


What is the difference between break and continue?

602


console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above

650






Explain high-order and low-order bytes.

660


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

637


How pointer is different from array?

573


4. main() { int c=- -2; printf("c=%d",c); }

1364


What type is sizeof?

578


Explain 'bit masking'?

644


Tell us something about keyword 'auto'.

657


When should a type cast not be used?

620


How pointers are declared?

556


Why is c so powerful?

676