Define function pointers?
Answer / preeti singh
A function pointer is a type of pointer that points to a
function, for e.g. a pointer to the function :
int fun(int a,int b)
can be declared as :
int(*myptr)(int a,int b);
here myptr is a type of pointer which can point to any
function which takes two integer arguments and returns int.
| Is This Answer Correct ? | 5 Yes | 0 No |
What does c mean in basketball?
main is a predefined or user define function if user defined why? if predefined whay?
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,
how can write all 1to 100 prime numbers using for loop,if and break ?
How can I do serial ("comm") port I/O?
What is the difference between macros and inline functions?
how to introdu5ce my self in serco
How is a macro different from a function?
What is string concatenation in c?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Explain the difference between #include "..." And #include <...> In c?