How will you declare an array of three function pointers where each function receives two ints and returns a float?
No Answer is Posted For this Question
Be the First to Post Answer
What is a Deque?
Explain the difference between exit() and _exit() function?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
Are there any problems with performing mathematical operations on different variable types?
Famous puzzles which are generally asked by companies during interviews ?
How do you use a 'Local Block'?
What are bit fields? What is their use?
c program to add and delete an element from circular queue using array
swapping of two numbers without using third variable using AND and OR operators
what is the difference between 123 and 0123 in c?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }