main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / rajjak khan
131113
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
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
Explain how can I avoid the abort, retry, fail messages?
Why do we use pointer to pointer in c?
Where define directive used?
Why does everyone say not to use gets?
Is return a keyword in c?
What is the scope of an external variable in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is dynamic variable in c?
How can you determine the size of an allocated portion of memory?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the size of structure pointer in c?