What is the difference between null pointer and the void
pointer?
Answer Posted / sunitha
null pointer : used to compair a pointer to any object or
a function and returns a null value to the main function.
void pointer : void pointer ia pointer which does not have
any return type and it can be easily type casted with other
type of pointers.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What does d mean?
Write a program to show the change in position of a cursor using c
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
In C programming, how do you insert quote characters (‘ and “) into the output screen?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Is there a built-in function in C that can be used for sorting data?
What is linear search?
Why do we need functions in c?
What is the -> in c?
Stimulate calculator using Switch-case-default statement for two numbers
What is main return c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Can you explain the four storage classes in C?
Explain what are reserved words?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?