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);
}



main() { static char *s[]={"black","white","yellow","voilet&qu..

Answer / vinod kumawat

Answer is - te

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Program to write some contents into a file using file operations with proper error messages.

2 Answers  


how memory store byte

4 Answers   Huawei,


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


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?

0 Answers  


how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...

1 Answers   Infosys,






program for swapping two strings by using pointers in c language

1 Answers  


what are two kinds of java

2 Answers  


What are the disadvantages of external storage class?

0 Answers  


What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack

6 Answers  


What is hungarian notation? Is it worthwhile?

0 Answers  


Hi Every one...........I have been selected for the SBI Clerk. But i m one month Pregnanat. So anyone please suggest me, is they take any objection on my joining .

4 Answers   State Bank Of India SBI,


wite a programme in c to linear search a data using flag and without using flags?

3 Answers   TCS,


Categories