#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


Please Help Members By Posting Answers For Below Questions

Is there anything like an ifdef for typedefs?

698


What is the size of a union variable?

598


In c programming language, how many parameters can be passed to a function ?

629


Explain how do you sort filenames in a directory?

602


What are operators in c?

581






A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

645


What is keyword in c?

602


What is 2 d array in c?

554


What is scope rule of function in c?

548


How is a macro different from a function?

652


Explain what is a static function?

630


What are actual arguments?

643


What is volatile variable how do you declare it?

566


Explain argument and its types.

600


Tell us the use of fflush() function in c language?

637