what is the advantage of function pointer
Answer Posted / satty
Functional pointer are more readable and executed run time
| Is This Answer Correct ? | 43 Yes | 13 No |
Post New Answer View All Answers
What is c language and why we use it?
show how link list can be used to repersent the following polynomial i) 5x+2
#include
How to get string length of given string in c?
What is bss in c?
How is a null pointer different from a dangling pointer?
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
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is the purpose of scanf() and printf() functions?
Explain what is the difference between functions abs() and fabs()?
What is pointer & why it is used?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Define macros.
What is atoi and atof in c?
What is binary tree in c?