What is the difference between null pointer and void pointer
Answer Posted / xlnx
NULL POINTER WILL POINT TO NOTHING.BUT VOID POINTER POINTNG
TO ANY OTHER DATA TYPE OF POINTER.
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How is = symbol different from == symbol in c programming?
What is a lookup table in c?
What is sizeof in c?
What does return 1 means in c?
If null and 0 are equivalent as null pointer constants, which should I use?
What is wrong with this declaration?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is function pointer c?
Explain the use of fflush() function?
What is the main difference between calloc () and malloc ()?
Explain how can you be sure that a program follows the ansi c standard?
What is the difference between variable declaration and variable definition in c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What are types of structure?