What is a macro, and explain how do you use it?
No Answer is Posted For this Question
Be the First to Post Answer
What is void pointers in c?
What is the size of structure pointer in c?
The differences between Windows XP and Windows Visa
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
What should malloc(0) do?
const char * char * const What is the differnce between the above tow?.
Find occurence of a character in a sting.
What is a nested loop?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Are c and c++ the same?
What is a segmentation fault?
Can 'this' pointer by used in the constructor?