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 give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What does == mean in texting?
What are the concepts introduced in OOPs?
how to capitalise first letter of each word in a given string?
What is #include stdlib h?
What is the acronym for ansi?
What is the right type to use for boolean values in c?
Is there a way to switch on strings?
Explain pointer. What are function pointers in C?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?