what is diference between return 0 and return NULL??
Answer Posted / dips
return 0 is indicatiion of successsfull completetion of
programme generally we write return 0 for that purpose
return null its returnig nothing in some condition we may
dont require to return any value
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How can I recover the file name given an open stream?
Are local variables initialized to zero by default in c?
how do you programme Carrier Sense Multiple Access
What is data types?
What is the meaning of ?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is the explanation for modular programming?
What is the difference between printf and scanf in c?
How many bytes is a struct in c?
difference between object file and executable file
What is pointer & why it is used?
What is an array? What the different types of arrays in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Write a program to implement queue.
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b