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 |
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
what are the compilation steps? ( i want inside the compiler )
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Example of friendly function in c++
Is double link list a linear data structure? If Yes, Why?If No, Why?
Tell me is null always defined as 0(zero)?
How do you use a pointer to a function?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the relationship between pointers and data structure?
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);