#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 / ashwini

c

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different types of control structures in programming?

656


What is meant by operator precedence?

670


Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?

574


difference between Low, Middle, High Level languages in c ?

1628


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

725






how to write a c program to print list of fruits in alpabetical order?

1786


What is scope and lifetime of a variable in c?

570


What is %g in c?

612


Write a program for finding factorial of a number.

629


Tell me when is a void pointer used?

642


What is %s and %d in c?

586


Explain what standard functions are available to manipulate strings?

608


How can a number be converted to a string?

595


What is non linear data structure in c?

567


How many keywords (reserve words) are in c?

613