Answer Posted / sathish
we can able to give function as a argument into a function
by using function pointer
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the different types of errors?
What is scope of variable in c?
What is c language & why it is used?
What is a void pointer in c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What are types of structure?
in iso what are the common technological language?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Explain what are reserved words?
Explain output of printf("Hello World"-'A'+'B'); ?
How can I avoid the abort, retry, fail messages?
Explain main function in c?
Between macros and functions,which is better to use and why?
int i=10; printf("%d %d %d", i, i=20, i);
What is the difference between functions abs() and fabs()?