What are the loops in c?
No Answer is Posted For this Question
Be the First to Post Answer
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
what is the code to display color fonts in the output?
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); }
When the macros gets expanded?
What is the difference between exit() and _exit()?
logic for x=y^n
ASCII stands for
What is Memory leakage ?
Explain what are the advantages and disadvantages of a heap?
What type of function is main ()?
How do I convert a string to all upper or lower case?
what is the difference between #include<stdio.h> and #include "stdio.h" ?