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
Why does the call char scanf work?
What is NULL pointer?
How can I find out the size of a file, prior to reading it in?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Do pointers need to be initialized?
What is the default value of local and global variables in c?
How can you check to see whether a symbol is defined?
Explain what is the benefit of using const for declaring constants?
how is the examination pattern?
Explain how can I convert a number to a string?
What are keywords c?
how to write a c program to print list of fruits in alpabetical order?
how many key words availabel in c a) 28 b) 31 c) 32
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What are shell structures used for?