what is a NULL pointer?

Answers were Sorted based on User's Feedback



what is a NULL pointer?..

Answer / prameela rani

it is a pointer which points nothing.
it does not point any thing

Is This Answer Correct ?    4 Yes 1 No

what is a NULL pointer?..

Answer / ganesh

null pointer is a pointer. it will retrns no value that is
call null pointer

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Write a C program where input is: "My name is xyz". output is: "xyz is name My".

1 Answers   TCS,


how to multiply two number taking input as a string (considering sum and carry )

2 Answers   Wipro,


enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

4 Answers   ME,


Why functions are used in c?

0 Answers  


What are the 4 types of organizational structures?

0 Answers  


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

0 Answers  


void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?

4 Answers   Groupon,


why Language C is plateform dependent

3 Answers   Siemens, Wipro,


where do we use volatile keyword?

1 Answers  


When is the “void” keyword used in a function?

1 Answers  


program for swapping two strings by using pointers in c language

1 Answers  


Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.

0 Answers  


Categories