#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


Please Help Members By Posting Answers For Below Questions

What is the difference between null pointer and wild pointer?

638


What is build process in c?

645


Create a simple code fragment that will swap the values of two variables num1 and num2.

813


why wipro wase

1831


What is a char in c?

556






In a switch statement, what will happen if a break statement is omitted?

602


What is #include cctype?

580


Do you have any idea how to compare array with pointer in c?

604


In C language, a variable name cannot contain?

745


What is the difference between array and linked list in c?

600


Where in memory are my variables stored?

637


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1128


Is c procedural or functional?

586


Write a program to print fibonacci series using recursion?

585


What is the purpose of 'register' keyword?

691