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
What is the general form of #line preprocessor?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What do you understand by friend-functions? How are they used?
What is difference between union and structure in c?
What is the size of structure pointer in c?
Why do we need a structure?
What is clrscr in c?
What are the 5 organizational structures?
What is the scope of global variable in c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Explain what is page thrashing?
What is c basic?
What is array of structure in c?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is ## preprocessor operator in c?