what is difference between null and nul in c language
Answer Posted / 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 |
Post New Answer View All Answers
What is the use of in c?
Why dont c comments nest?
Write a program to print all permutations of a given string.
What is structure and union in c?
Compare and contrast compilers from interpreters.
What is the scope of static variable in c?
how to count no of words,characters,lines in a paragraph.
What is the newline escape sequence?
What is the purpose of 'register' keyword in c language?
Why main is not a keyword in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is pivot in c?
Explain what does the function toupper() do?
What is the use of getchar functions?
Explain how does flowchart help in writing a program?