Tell me when is a void pointer used?
Submitted by: MuhammadA void pointer is used for working with raw memory or for passing a pointer to an unspecified type.
Some C code operates on raw memory. When C was first invented, character pointers (char *) were used for that. Then people started getting confused about when a character pointer was a string, when it was a character array, and when it was raw memory.
Submitted by: Muhammad
Some C code operates on raw memory. When C was first invented, character pointers (char *) were used for that. Then people started getting confused about when a character pointer was a string, when it was a character array, and when it was raw memory.
Submitted by: Muhammad
Read Online C Pointers Job Interview Questions And Answers
Top C Pointers Questions
| ☺ | What would be the equivalent pointer expression for referring the array element a[i][j][k][l] |
| ☺ | Tell me with an example the self-referential structure? |
| ☺ | Explain what is the purpose of "extern" keyword in a function declaration? |
| ☺ | What is the difference between exit() and _exit() function? |
| ☺ | Do you know the use of fflush() function? |
Top C Programming Categories
| ☺ | C Functions Interview Questions. |
| ☺ | C Pointers Interview Questions. |
| ☺ | C Preprocessor Interview Questions. |
