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 |
How #define works?
whether itis a structured language?
How can I pad a string to a known length?
Explain how can I convert a number to a string?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
explain what is an endless loop?
Differentiate between calloc and malloc.
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
what is output of the following statetment?Printf(“%x”, -1<<4); ?
implement OR gate without using any bitwise operator.
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?