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 |
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Can a file other than a .h file be included with #include?
What is integer constants?
difference between loading and linking
Do you have any idea how to compare array with pointer in c?
Write a program to check whether a number is prime or not using c?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Write a program for Overriding.
Explain what is the advantage of a random access file?
Discuss the function of conditional operator, size of operator and comma operator with examples.
How can this be legal c?