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
In which language linux is written?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is meant by gets in c?
What is sizeof array in c?
What is an endless loop?
Explain how can you check to see whether a symbol is defined?
What is an lvalue in c?
What does the c preprocessor do?
what are the advantages of a macro over a function?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Write a program to identify if a given binary tree is balanced or not.
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What does node * mean?
What are the features of c language?
what are # pragma staments?