Answer Posted / ravikumar
pointer provide the call back function by using arguments
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is this program statement valid? INT = 10.50;
Does * p ++ increment p or what it points to?
Can we increase size of array in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is volatile variable in c with example?
How can you find the exact size of a data type in c?
What is ponter?
What does sizeof function do?
What is a union?
What is the difference between exit() and _exit() function?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Why is c called "mother" language?
Tell us two differences between new () and malloc ()?
What are the different data types in C?