What is wrong with this initialization?
No Answer is Posted For this Question
Be the First to Post Answer
In C programming, how do you insert quote characters (‘ and “) into the output screen?
what is the use of ~ in c lang?????
Why isn't any of this standardized in c? Any real program has to do some of these things.
Is it possible to run using programming C for Java Application?
What is malloc return c?
What happens if you free a pointer twice?
convert 0.9375 to binary
can you change name of main()?how?
#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
What are pointers in C?
What are macros in C?
What is volatile