what is the difference between NULL & NUL keywords in C?
Answer Posted / abhijit
NULL is a macro defined in <stddef.h> for the null pointer.
<br>NUL is the name of the first character in the ASCII
character set. It corresponds to a zero value. There?s no
<br>standard macro NUL in C, but some people like to define
it. <br>The digit 0 corresponds to a value of 80, decimal.
Don?t confuse the digit 0 with the value of ?? (NUL)!
<br>NULL can be defined as ((void*)0), NUL as ??. <br>
? NewInterviewQuestions.com
| Is This Answer Correct ? | 17 Yes | 5 No |
Post New Answer View All Answers
What is a dynamic array in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
what are the facialities provided by you after the selection of the student.
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What does *p++ do? What does it point to?
What is a example of a variable?
List the different types of c tokens?
How does pointer work in c?
Why can't I perform arithmetic on a void* pointer?
Is the exit() function same as the return statement? Explain.
Write a program to swap two numbers without using third variable in c?
Difference between macros and inline functions? Can a function be forced as inline?
What is the use of c language in real life?
How can I find out how much free space is available on disk?