What is the difference between null pointer and wild pointer?
No Answer is Posted For this Question
Be the First to Post Answer
How can I convert a number to a string?
How can you dynamically allocate memory in C?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
main() { int a; a=++100; printf("%d",a); getch(); }
How many levels of pointers have?
What are the types of arrays in c?
Explain pointer. What are function pointers in C?
whats the use of header file in c?
Explain c preprocessor?
What is the 'named constructor idiom'?
What is Dynamic Initialization.