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);
}
How many bytes are occupied by near, far and huge pointers (dos)?
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
Write a program to print all permutations of a given string.
WHO WROTE C LANGUAGE?
WAP – represent a char in binary format
How can I do serial ("comm") port I/O?
What is the Purpose of 'extern' keyword in a function declaration?
What is union and structure in c?
Explain how does free() know explain how much memory to release?
Explain the difference between null pointer and void pointer.
how can f be used for both float and double arguments in printf? Are not they different types?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?