What does a run-time "null pointer assignment" error mean?
Answer Posted / varghese
its means u r assingnning a pointer to an invalid address
location
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What do mean by network ?
What is the heap in c?
Explain void pointer?
swap 2 numbers without using third variable?
Is struct oop?
How many types of arrays are there in c?
Why is c called a structured programming language?
difference between native and cross compilers
Should I learn c before c++?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain how can I convert a string to a number?
What is difference between structure and union?
Define circular linked list.
Are global variables static in c?
Can a variable be both static and volatile in c?