What is true about the following
C Functions
a.Need not return any value
b.Should always return an integer
c.Should always return a float
d.Should always return more than one value.
Answer Posted / vinod
hey guys but when main finishes its execution does it not return any value to the compiler that the main() executed successfully or not .
how will one know that main has executed successfully.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why clrscr is used after variable declaration?
What is scope of variable in c?
What is structure in c language?
What is auto keyword in c?
In c language can we compile a program without main() function?
int far *near * p; means
What are header files why are they important?
What are the Advantages of using macro
What is the difference between class and object in c?
Are the variables argc and argv are always local to main?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain the priority queues?
What is the ANSI C Standard?
Is that possible to add pointers to each other?
What is the use of #define preprocessor in c?