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

Post New Answer

More C Interview Questions

Write a program to print fibonacci series using recursion?

0 Answers  


What is a pointer and how it is initialized?

0 Answers  


What are types of structure?

0 Answers  


write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.

1 Answers  


which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )

1 Answers   C DAC,






6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


What are the Advantages of using macro

0 Answers  


Why does everyone say not to use gets?

0 Answers  


How many identifiers are there in c?

0 Answers  


why do we use # in c-language?

1 Answers  


Explain what are binary trees?

0 Answers  


wat are the two methods for swapping two numbers without using temp variable??

2 Answers  


Categories