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
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are the different properties of variable number of arguments?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Can you subtract pointers from each other? Why would you?
Differentiate abs() function from fabs() function.
What is the best organizational structure?
Why does this code crash?
What tq means in chat?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Difference between constant pointer and pointer to a constant.
What math functions are available for integers? For floating point?
What is static function in c?
What are the preprocessor categories?
Explain what is the general form of a c program?
Explain the Difference between the New and Malloc keyword.