Explain null pointer.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?

3 Answers   Excel,


What are disadvantages of C language.

0 Answers   iNautix,


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

0 Answers  


What is volatile keyword in c?

0 Answers  


What does the c in ctime mean?

0 Answers  






How can you increase the size of a dynamically allocated array?

0 Answers   TISL,


Write a c program to build a heap method using Pointer to function and pointer to structure ?

0 Answers   MAHINDRA, Protech, Sivan Tech,


Differentiate between declaring a variable and defining a variable?

0 Answers  


What does the message "warning: macro replacement within a string literal" mean?

1 Answers  


Who is invented by c?

24 Answers   Infosys, Mphasis,


I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.

1 Answers  


Why is the code below functioning. According to me it MUST NOT.

1 Answers  


Categories