what r callback function?
Answer / raghu
A function that is passed (by reference) to another
function. The other function calls the callback function
under defined conditions
| Is This Answer Correct ? | 5 Yes | 1 No |
What are the modifiers available in c programming language?
Is boolean a datatype in c?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
Where static variables are stored in c?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
What is header file in c?
Is there a built-in function in C that can be used for sorting data?
What is 02d in c?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
What is the use of #define preprocessor in c?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
What are enums in c?