main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / ajay karanam
4554202496
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
If fflush wont work, what can I use to flush input?
What is the difference between memcpy and memmove?
What are different types of variables in c?
Is Exception handling possible in c language?
Explain what header files do I need in order to define the standard library functions I use?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What are the advantages of c preprocessor?
Is file a keyword in c?
What is merge sort in c?
Can we change the value of #define in c?
Explain the difference between call by value and call by reference in c language?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What oops means?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Explain what math functions are available for integers? For floating point?