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 |
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
What is the general form of a C program?
what is use of malloc and calloc?
How can you find the exact size of a data type in c?
What is d scanf?
Explain the advantages of using macro in c language?
plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
a simple program in c language
How will you allocate memory to double a pointer?
can we declare a variable in different scopes with different data types? answer in detail