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 |
what is pointer
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
Write a code to generate a series where the next element is the sum of last k terms.
How the processor registers can be used in C ?
How would you sort a linked list?
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
What does void main return?
Explain do array subscripts always start with zero?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
what is real time system?what is the differance between hard and soft real time systems
Lists the benefits of c programming language?