Explain pointer. What are function pointers in C?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the value of c?

0 Answers  


Program to trim a given character from a string.

5 Answers   NetApp,


What are the basic data types associated with c?

0 Answers  


what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }

3 Answers   Satyam,


Which header file is essential for using strcmp function?

0 Answers  






Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


What is the Purpose of 'extern' keyword in a function declaration?

0 Answers  


What is operator promotion?

0 Answers  


1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.

2 Answers  


I have seen function declarations that look like this

0 Answers  


What is getch () for?

0 Answers  


I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7

1 Answers  


Categories