main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / pooja alagarsamy
when compiled as a program, it gives this output:
13 11 13
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How are portions of a program disabled in demo versions?
Explain the difference between strcpy() and memcpy() function?
What is c language and why we use it?
What is the correct declaration of main?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What are header files? What are their uses?
How can I send mail from within a c program?
Can a program have two main functions?
Describe the difference between = and == symbols in c programming?
How many keywords (reserve words) are in c?
What language is c written?
What is enumerated data type in c?
Why can't I perform arithmetic on a void* pointer?
What are all different types of pointers in c?