What is a node in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is sparse file?
whats the use of header file in c?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is the size of enum in c?
How do you define structure?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
will u please send me the placement papers to my mail???????????????????
which is the best antivirus and how to update it
Combinations of fibanocci prime series
Why do u use # before include in a C Progam?
Are pointers really faster than arrays?
#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