#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 / kedar
a
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain heap and queue.
How can I sort more data than will fit in memory?
What are the two types of structure?
Why & is used in scanf in c?
What is clrscr in c?
How can you allocate arrays or structures bigger than 64K?
How can I make it pause before closing the program output window?
What is sorting in c plus plus?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Can we declare variables anywhere in c?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the purpose of macro in C language?
What is a structure in c language. how to initialise a structure in c?
List the difference between a "copy constructor" and a "assignment operator"?
What is %d called in c?