What is scope and lifetime of a variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a keyword?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
What is the concatenation operator?
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 is a macro different from a function?
What is scope rule in c?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What are the two forms of #include directive?
Can I initialize unions?
What is || operator and how does it function in a program?
Why string is used in c?
What are all different types of pointers in c?