main()
{
static char *s[]={"black","white","yellow","voilet"};
char **ptr[]={s+3,s+2,s+1,s}, ***p;
p=ptr;
**++p;
printf("%s",*--*++p+3);
}
Answer Posted / vinod kumawat
Answer is - te
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a rvalue?
List a few unconditional control statement in c.
What are the 32 keywords in c?
What is calloc in c?
What is the general form of function in c?
What are two dimensional arrays alternatively called as?
How can you invoke another program from within a C program?
Mention four important string handling functions in c languages .
How to write a multi-statement macro?
What are near, far and huge pointers?
What is the use of header?
int i=10; printf("%d %d %d", i, i=20, i);
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Why should I prototype a function?