Can a function argument have default value?
No Answer is Posted For this Question
Be the First to Post Answer
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
main() { int a[10]; printf("%d",*a+1-*a+3); }
What is the meaning of ?
When is a “switch” statement preferable over an “if” statement?
What is getch c?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
What are the general description for loop statement and available loop types in c?
Do you know what are bitwise shift operators in c programming?
What is a program?
what is data structure.in linear and non linear data structures which one is better?Explain
What is external and internal variables What is dynamic memory allocation what is storage classes in C
What is character constants?