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 |
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
What is the purpose of sprintf() function?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
Can stdout be forced to print somewhere other than the screen?
What are the disadvantages of external storage class?
1,1,5,17,61,217,?,?.
wats SIZE_T meant for?
Explain the use of bit fieild.
What is a volatile keyword in c?
main() { printf("hello%d",print("QUARK test?")); }