what is the difference b/w NULL and null?
Answer Posted / 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 |
Post New Answer View All Answers
What is || operator and how does it function in a program?
What is the ANSI C Standard?
Explain what are the standard predefined macros?
find out largest elemant of diagonalmatrix
What is string concatenation in c?
What is the use of ?: Operator?
How can my program discover the complete pathname to the executable from which it was invoked?
Do you know pointer in c?
What is a wrapper function in c?
What is typedf?
What is oops c?
Explain function?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Can a pointer be volatile in c?
What is a newline escape sequence?