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 structure is used in c?
What is a wrapper function in c?
What are global variables?
What is the use of a semicolon (;) at the end of every program statement?
How do c compilers work?
Explain how do you list a file’s date and time?
What is C language ?
Add Two Numbers Without Using the Addition Operator
Explain what is the difference between far and near ?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Is this program statement valid? INT = 10.50;
Differentiate between static and dynamic modeling.
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Write a program to print factorial of given number without using recursion?
Explain what is meant by high-order and low-order bytes?