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 is an inline function?
What is an object?
What is malloc calloc and realloc in c?
c program to manipulate x=1!+2!+3!+...+n! using recursion
What is c language in simple words?
A stack can be implemented only using array?if not what is used?
Explain the concept and use of type void.
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
What does *p++ do?
write a program whose output will be- 1 12 123 1234
Differentiate abs() function from fabs() function.
write a “Hello World” program in “c” without using a semicolon?