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 is structure important for a child?
Explain indirection?
Explain about the functions strcat() and strcmp()?
What is the difference between text files and binary files?
Which of these functions is safer to use : fgets(), gets()? Why?
How can I read data from data files with particular formats?
Explain what is the difference between a free-standing and a hosted environment?
How does placing some code lines between the comment symbol help in debugging the code?
Write a program on swapping (100, 50)
What does %d do?
What is this pointer in c plus plus?
What is sizeof array in c?
What are structure members?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What is a pointer value and address in c?