Is flag a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is array of structure in c programming?
What is a #include preprocessor?
write a program to print %d ?
What extern c means?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
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 the processor registers can be used in C ?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
p*=(++q)++*--p when p=q=1 while(q<=6)
What is mean by data types in c?
What is 1d array in c?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }