what is the difference b/w NULL and null?
Answers were Sorted based on User's Feedback
Answer / evalin jose
"null" means empty.And "NULL" means ,it values zero.
| Is This Answer Correct ? | 14 Yes | 4 No |
Answer / guest
In c language there is difference small alphabets that is
null and NULL capital alphabets ,it store nothing in a field
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / deepika
NULL------ It is a macro defined null pointer.
size(NULL)--->4 bytes
null------It is the name of the first character in ASCII character set. size(null)----->1 byte
| Is This Answer Correct ? | 1 Yes | 2 No |
write a program to display numbers from 1 to 10 and 10 to 1?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
what is an array
how to swap two integers 1 and 32767 without using third variable
who is the father of C Language?
20 Answers CTS, UST,
How can I write a function analogous to scanf?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What are the types of unary operators?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
How does variable declaration affect memory?
why we wont use '&' sing in aceesing the string using scanf
find the sum of two matrices and WAP for it.