What is the difference between null pointer and the void
pointer?
Answer Posted / vaibhav
null pointer contain null value . it doesn't contain any
value.
while void pointer is a pointer that cascade at a runtime.
i.e it casting at runtime
Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What is meant by preprocessor in c?
What is a function in c?
Is there any data type in c with variable size?
What is pivot in c?
List the difference between a While & Do While loops?
When should you use a type cast?
Why is sprintf unsafe?
What are dangling pointers in c?
What is c preprocessor mean?
Differentiate between full, complete & perfect binary trees.
Is return a keyword in c?
Write a program to print fibonacci series without using recursion?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is #ifdef ? What is its application?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.