How do you use a pointer to a function?


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

Post New Answer

More C Interview Questions

code for replace tabs with equivalent number of blanks

0 Answers   Bosch,


count the numbers between 100 and 300, that star with 2 and ends with 2

5 Answers   Mind Tree,


Explain a file operation in C with an example.

0 Answers   Amdocs,


What are logical errors and how does it differ from syntax errors?

0 Answers  


What is graph in c?

0 Answers  


How to avoid structure padding in C?

8 Answers   Tech Mahindra,


what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer

2 Answers  


what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason

3 Answers  


Can a local variable be volatile in c?

0 Answers  


what are the different storage classes in c?

0 Answers   TCS,


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


What is keyword in c?

0 Answers  


Categories