what is difference between null and nul in c language
Answer Posted / 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 |
Post New Answer View All Answers
Why is this loop always executing once?
Explain what is the benefit of using #define to declare a constant?
What is the use of ?: Operator?
What is dynamic variable in c?
In C language, a variable name cannot contain?
What is pass by reference in functions?
What is void main () in c?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is main () in c language?
What is f'n in math?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is the difference between fread buffer() and fwrite buffer()?
Is fortran still used in 2018?
Write a program to check prime number in c programming?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.