main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / cholan
55545
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
What is 02d in c?
What is formal argument?
Write program to remove duplicate in an array?
What are local static variables? How can you use them?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
How does #define work?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Difference between Function to pointer and pointer to function
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Explain what is page thrashing?
What is a string?
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 chain pointer in c?
What is the use of pointers in C?