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

Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321

7 Answers   HCL,


What is the sizeof () operator?

0 Answers  


yogesh patil in dell

3 Answers   DELL,


What is restrict keyword in c?

0 Answers  


there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?

1 Answers  






how to find the binary of a number?

10 Answers   Infosys,


how will you write a program on linked lists using JAVA programming???????????

1 Answers   Keane India Ltd,


What is static and auto variables in c?

0 Answers  


what are brk, sbrk?

1 Answers   Oracle,


Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors

3 Answers  


how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0

4 Answers   Wipro,


wap in c to accept n number display the highest and lowest value

2 Answers  


Categories