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


Please Help Members By Posting Answers For Below Questions

What is a stream?

651


a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

659


What is the 'named constructor idiom'?

640


What are register variables? What are the advantage of using register variables?

687


What is a program flowchart and how does it help in writing a program?

665






How can you increase the size of a dynamically allocated array?

642


Is python a c language?

552


What math functions are available for integers? For floating point?

625


What do you mean by dynamic memory allocation in c? What functions are used?

657


How #define works?

618


How we can insert comments in a c program?

633


What are void pointers in c?

574


What is the meaning of typedef struct in c?

594


What does nil mean in c?

672


What is c basic?

601