what is the difference b/w NULL and null?
Answer Posted / 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 |
Post New Answer View All Answers
Why is c known as a mother language?
What is the difference between far and near in c?
Do you know null pointer?
What are the applications of c language?
Explain how do you generate random numbers in c?
Is it acceptable to declare/define a variable in a c header?
What are the different file extensions involved when programming in C?
Why does not c have an exponentiation operator?
What is ## preprocessor operator in c?
what are bit fields in c?
How to write a multi-statement macro?
Is c high or low level?
What is the argument of a function in c?
What is the difference between struct and union in C?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory