what is diference between return 0 and return NULL??
Answer Posted / sourabh
return 0 means the function returns the particular value 0
returnn null means the function does not return any value'
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
In which language linux is written?
What is omp_num_threads?
What is the purpose of clrscr () printf () and getch ()?
What is a stream water?
When can a far pointer be used?
Why should I use standard library functions instead of writing my own?
Why do we use static in c?
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 most efficient way to count the number of bits which are set in an integer?
Explain what math functions are available for integers? For floating point?
How do you define a function?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is volatile variable in c with example?
What does void main () mean?