How to implement call back functions ?
Answers were Sorted based on User's Feedback
Answer / priya
In computer programming, a callback is executable code that is passed as an argument to other code
Function Pointers provide the concept of callback functions.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikumar
pointer provide the call back function by using arguments
| Is This Answer Correct ? | 0 Yes | 0 No |
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
Explain a file operation in C with an example.
What is a volatile keyword in c?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
why the execution starts from main function
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
Write a program to print fibonacci series without using recursion?
What does sizeof function do?
Explain what are reserved words?