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 |
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
what is the difference between exit() and _exit() functions?
What are the preprocessor categories?
Identify the operators that is not used with pointer a. && b. # c. * d. >>
State two uses of pointers in C?
What is the condition that is applied with ?: Operator?
why the execution starts from main function
How can I remove the leading spaces from a string?
second highest number in a given set of numbers
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
What standard functions are available to manipulate strings?
Why c is called top down?