main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / san
13,11,11
| Is This Answer Correct ? | 106 Yes | 63 No |
Post New Answer View All Answers
How is a macro different from a function?
write a progrmm in c language take user interface generate table using for loop?
Define the scope of static variables.
How are pointers declared in c?
Difference between constant pointer and pointer to a constant.
Are pointers really faster than arrays?
What are the three constants used in c?
What does *p++ do? What does it point to?
Explain the difference between ++u and u++?
What are the c keywords?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
In C programming, what command or code can be used to determine if a number of odd or even?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
When should volatile modifier be used?