#include<stdio.h>
main()
{
int a[3];
int *I;
a[0]=100;a[1]=200;a[2]=300;
I=a;
Printf(“%d\n”, ++*I);
Printf(“%d\n”, *++I);
Printf(“%d\n”, (*I)--);
Printf(“%d\n”, *I);
}
what is the o/p
a. 101,200,200,199
b. 200,201,201,100
c. 101,200,199,199
d. 200,300
Answer Posted / ashwini
c
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is this pointer in c plus plus?
Explain why c is faster than c++?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is variable and explain rules to declare variable in c?
What is wrong with this statement? Myname = 'robin';
How can I delete a file?
How main function is called in c?
List a few unconditional control statement in c.
How can I read and write comma-delimited text?
Explain how can you avoid including a header more than once?
What is difference between function overloading and operator overloading?
Write a code on reverse string and its complexity.
What happens if you free a pointer twice?
What is a wrapper function in c?
What is a void pointer in c?