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);
}
What are the general description for loop statement and available loop types in c?
how do you redirect stdout value from a program to a file?
How to add two numbers with using function?
how to convert an char array to decimal array
write an interactive program to generate the divisors of a given integer.
what are the languages used in c#?
What do you mean by scope of a variable in c?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is meant by int fun const(int a, int b) { .... ... }
How to print "I Love My India" without using semi colon?
which operator is known as dummy operator in c?
Can we change the value of static variable in c?