Tell me what is null pointer in c?
Answer / Sanjeev Sen
A null pointer, denoted by (void *)0 or NULL, is a pointer that does not point to any valid memory location. It is used to indicate that a pointer points nowhere.
| Is This Answer Correct ? | 0 Yes | 0 No |
WHAT IS LOW LEVEL LANGUAGE?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
What is C language ?
what is the use of fflush() function?
Why is malloc used?
What is meant by int main ()?
What is .obj file in c?
Write a program to find factorial of a number using recursive function.
Explain output of printf("Hello World"-'A'+'B'); ?
Explain how do you search data in a data file using random access method?
What are the advantages of the functions?