what is a NULL pointer?
Answers were Sorted based on User's Feedback
Answer / prameela rani
it is a pointer which points nothing.
it does not point any thing
Is This Answer Correct ? | 4 Yes | 1 No |
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 |
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
how to multiply two number taking input as a string (considering sum and carry )
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Why functions are used in c?
What are the 4 types of organizational structures?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
why Language C is plateform dependent
where do we use volatile keyword?
When is the “void” keyword used in a function?
program for swapping two strings by using pointers in c language
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.