what is difference between null and nul in c language
Answers were Sorted based on User's Feedback
Answer / xsoft
null this is a key word in C language but the nul this
keyword used in dos Programming as you can you use it in C
programming with the function system("dir ./a>nul");
then when can consider this nul as an output.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / amar singh rajput
NULL is an pointer with value zero (0) ,and NUL is an character with integer value 0 (zero) .
| Is This Answer Correct ? | 0 Yes | 0 No |
What is calloc()?
How can I avoid the abort, retry, fail messages?
how to make program without <> in libray.
What is volatile
What is the difference between declaring a variable by constant keyword and #define ing that variable?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is ## preprocessor operator in c?
What are variables c?
what is the c.
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
what is difference b/w extern & volatile variable??
Why the use of alloca() is discouraged?