How can you call a function, given its name as a string?
No Answer is Posted For this Question
Be the First to Post Answer
Is main a keyword in c?
The file stdio.h, what does it contain?
with out using main how to execute the program?
How can I write a function that takes a format string and a variable number of arguments?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
Explain what is a 'locale'?
What is modifier & how many types of modifiers available in c?
HOW TO HANDLE EXCEPTIONS IN C
What do you mean by scope of a variable in c?
write a function which accept two numbers from main() and interchange them using pointers?