What is Generic pointer? What is the purpose of Generic
pointer? Where it is used?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / kiran kumar yakkala
generic pointer- generally "void" used for generic
no specification of data type
if u dont know the data type specification at the time
of any funciton or datatype declaration, generally go for
generaic(void) .
but it needs a "type conversion" for further usage
mind that "void" pointer never be incremented or
decremented, after type conversion only u should go for
that.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rambabu
generic pointer is a pointer and it accept any data
type.suppose u give int as the our data type but u give
float as the value to the program then it will accept
| Is This Answer Correct ? | 0 Yes | 2 No |
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
How variables are declared in c?
int *a[5] refers to
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
Where register variables are stored in c?
Can a pointer be volatile in c?
what is the difference between const char *p, char const *p, const char* const p
5 Answers Accenture, Aricent, CTS, Geometric Software, Point Cross, Verizon,
Output for following program using for loop only * * * * * * * * * * * * * * *
What is an lvalue in c?