void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / nunaram murmu
542
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
Is c call by value?
Why is #define used?
How pointers are declared?
Why does the call char scanf work?
Explain continue keyword in c
What is indirection? How many levels of pointers can you have?
Explain bit masking in c?
c language interview questions & answer
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 high-order and low-order bytes.
What is default value of global variable in c?
What are the loops in c?
What is chain pointer in c?
Describe wild pointers in c?
What is advantage of pointer in c?