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 scanf () in c?
Are the variables argc and argv are local to main?
Explain the priority queues?
What is 1d array in c?
Is main() function predfined or userdefined?
What are the advantages of using linked list for tree construction?
How do you initialize pointer variables?
Write a program to check prime number in c programming?
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
Differentiate between a structure and a union.
What are the rules for identifiers in c?
C program to find frequency of each character in a text file?