what is the advantage of function pointer
Answer Posted / maskfriend
function of pointer is more useful for use of large
function argument.it creats less complecty in function
argument.
| Is This Answer Correct ? | 29 Yes | 10 No |
Post New Answer View All Answers
Explain what is the difference between a string and an array?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is difference between static and global variable in c?
Explain what is the heap?
Do you have any idea how to compare array with pointer in c?
How do we make a global variable accessible across files? Explain the extern keyword?
In which header file is the null macro defined?
In C language, a variable name cannot contain?
When should volatile modifier be used?
What is a volatile keyword in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Write a program to print all permutations of a given string.
Which header file is essential for using strcmp function?
Write a program to reverse a linked list in c.
What is typedef struct in c?