what is the advantage of function pointer
Answer Posted / ajay
TO implement call back functions.......
| Is This Answer Correct ? | 34 Yes | 8 No |
Post New Answer View All Answers
What are the basic data types associated with c?
Tell me what is the purpose of 'register' keyword in c language?
When should the volatile modifier be used?
Differentiate between the = symbol and == symbol?
What is static identifier?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What are dangling pointers? How are dangling pointers different from memory leaks?
What does static variable mean in c?
Is c compiled or interpreted?
what will be the output for the following main() { printf("hi" "hello"); }
Linked lists -- can you tell me how to check whether a linked list is circular?
Write a program to swap two numbers without using a temporary variable?
What are the 4 types of functions?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is the use of parallelize in spark?