#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,200,100
Answer Posted / mann
a. 101,200,200,199
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Is boolean a datatype in c?
What does %c do in c?
Do you know pointer in c?
explain what is a newline escape sequence?
will u please send me the placement papers to my mail???????????????????
Tell me the use of bit field in c language?
What is const and volatile in c?
What is static function in c?
Where does the name "C" come from, anyway?
What are the types of type specifiers?
What functions are used in dynamic memory allocation in c?
List the variables are used for writing doubly linked list program.
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Describe newline escape sequence with a sample program?
Write a program to reverse a string.