What does a run-time "null pointer assignment" error mean?
Answers were Sorted based on User's Feedback
Answer / varghese
its means u r assingnning a pointer to an invalid address
location
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / guest
It means that you've written, via a null pointer, to an
invalid location
| Is This Answer Correct ? | 0 Yes | 6 No |
Explain what is operator promotion?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What is sizeof array?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
write a program to delete an item from a particular location of an linear array?
What is a string?
what is the use of pointers
no consistent academics. how to answer the question
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
write a program which will count occurance of a day between two dates.
Explain how can you check to see whether a symbol is defined?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }