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
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is a program flowchart and how does it help in writing a program?
What do you understand by friend-functions? How are they used?
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is the role of && operator in a program code?
Explain how does free() know explain how much memory to release?
Differentiate between a structure and a union.
Is it better to use malloc() or calloc()?
What’s the special use of UNIONS?
What is a good data structure to use for storing lines of text?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Why is c platform dependent?
Is c easy to learn?
Write a code to generate a series where the next element is the sum of last k terms.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }