#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
Can one function call another?
What are pointers? Why are they used?
Explain what is the difference between a string and an array?
How to write c functions that modify head pointer of a linked list?
What are the types of type qualifiers in c?
What is a shell structure examples?
What is the data segment that is followed by c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
List out few of the applications that make use of Multilinked Structures?
What is storage class?
Explain the use of function toupper() with and example code?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What does %c do in c?
How do I swap bytes?
Is main an identifier in c?