What is the difference between null pointer and void pointer
Answer Posted / govind
a void pointer is a special type of pointer of void and
denotes that it can point to any type of data type .NULL
pointer can take any pointer type , but do not point to any
valid reference or memory adderss.it is important to note
that a NULL pointer is different from a pointer that is
initialized.
| Is This Answer Correct ? | 19 Yes | 8 No |
Post New Answer View All Answers
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What does calloc stand for?
What is the c value paradox and how is it explained?
Differentiate between null and void pointers.
how logic is used
Which is better between malloc and calloc?
What is logical error?
Which function in C can be used to append a string to another string?
Array is an lvalue or not?
What are examples of structures?
What does the c preprocessor do?
write a program to print largest number of each row of a 2D array
What is the benefit of using const for declaring constants?
Why c is known as a mother language?
How does sizeof know array size?