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
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Why is c called c not d or e?
Why is c called c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Explain how do you print an address?
Who is the main contributor in designing the c language after dennis ritchie?
What is cohesion in c?
explain what are pointers?
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
Why we use void main in c?
What is f'n in math?
Explain what are the __date__ and __time__ preprocessor commands?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Explain how can you check to see whether a symbol is defined?
What are pointers really good for, anyway?