#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
What does char * * argv mean in c?
Where local variables are stored in c?
How many identifiers are there in c?
What does return 1 means in c?
What is the difference between text files and binary files?
Explain the concept and use of type void.
write a program fibonacci series and palindrome program in c
What is c programing language?
Do you know null pointer?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Where is volatile variable stored?
Describe dynamic data structure in c programming language?
List the different types of c tokens?
What is const and volatile in c?
Why calloc is better than malloc?