#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 a pointer be volatile in c?
What are the primitive data types in c?
What are data types in c language?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What is meant by inheritance?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
How can you pass an array to a function by value?
What is the difference between malloc() and calloc() function in c language?
Explain how does free() know explain how much memory to release?
Explain what are linked list?
What is meant by keywords in c?
Explain argument and its types.
State two uses of pointers in C?
What are the advantages of Macro over function?
how can use subset in c program and give more example