Do you know what is the purpose of 'extern' keyword in a function declaration?
No Answer is Posted For this Question
Be the First to Post Answer
HOW CAN ADD OUR FUNCTION IN LIBRARY.
How can a program be made to print the line number where an error occurs?
What is main void in c?
What does a pointer variable always consist of?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
What is pass by value in c?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
What is a good data structure to use for storing lines of text?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What is getch() function?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????