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 |
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the relation between # and include<stdio.h>
What is queue in c?
What is typedef struct in c?
What is typedef example?
suppose there are five integers write a program to find larger among them without using if- else
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Is file a keyword in c?
What is the use of void pointer and null pointer in c language?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler