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

a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list

0 Answers  


What does c mean in standard form?

0 Answers  


Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?

2 Answers  


Which control loop is recommended if you have to execute set of statements for fixed number of times?

0 Answers  


If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???

3 Answers   Amdocs, IBM,






How do you define a function?

0 Answers  


if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?

2 Answers   NetApp,


const char * char * const What is the differnce between the above tow?.

6 Answers   Ramco, TCS,


What is the significance of c program algorithms?

0 Answers  


pgm to find middle element of linklist(in efficent manner)

4 Answers   Huawei,


What are the benefits of organizational structure?

0 Answers  


Explain what are header files and explain what are its uses in c programming?

0 Answers  


Categories