#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
Is boolean a datatype in c?
Why should I prototype a function?
Does c have class?
What is #include called?
Is stack a keyword in c?
What’s a signal? Explain what do I use signals for?
What are global variables and explain how do you declare them?
How can I trap or ignore keyboard interrupts like control-c?
Explain 'bit masking'?
Why is c faster?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Explain modulus operator. What are the restrictions of a modulus operator?
What is %d called in c?
show how link list can be used to repersent the following polynomial i) 5x+2
What is array of structure in c?