what is the advantage of function pointer
Answer Posted / satty
Functional pointer are more readable and executed run time
Is This Answer Correct ? | 43 Yes | 13 No |
Post New Answer View All Answers
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is the correct code to have following output in c using nested for loop?
What does %d do in c?
how many key words availabel in c a) 28 b) 31 c) 32
Not all reserved words are written in lowercase. TRUE or FALSE?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is storage class?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is a buffer in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
How can I delete a file?
string reverse using recursion
Can include files be nested? How many levels deep can include files be nested?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Is c dynamically typed?