What is Generic pointer? What is the purpose of Generic
pointer? Where it is used?
Answer Posted / veluri.haritha
It is a pointer to hold the address of variable of any data
type.it can be declared using void data type .It is used in
memory allocation functions etc.....
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
How does #define work?
How do you construct an increment statement or decrement statement in C?
What is extern variable in c with example?
What are 'near' and 'far' pointers?
Can you write the function prototype, definition and mention the other requirements.
difference between Low, Middle, High Level languages in c ?
What is a program flowchart?
Write the syntax and purpose of a switch statement in C.
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain argument and its types.
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Is python a c language?
What is the difference between malloc() and calloc() function in c language?
Create a simple code fragment that will swap the values of two variables num1 and num2.