Can a void pointer point to a function?
No Answer is Posted For this Question
Be the First to Post Answer
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Is stack a keyword in c?
Write a simple program to find the size of different basic data types in C.
Where does the name "C" come from, anyway?
will u give me old quesrion papers for aptitude for L & t info tech?
what is recursion in C
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What does the characters “r” and “w” mean when writing programs that will make use of files?
FILE PROGRAMMING
what is the difference between strcpy() and memcpy() function?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
In C programming, how do you insert quote characters (‘ and “) into the output screen?