Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / pravat kumar patra
main() is a user defind function.because we write some codes
inside main to perform certain task.but in case of sqrt() if
write the function in a program it executes.but we have not
to write the function body.
consider the case:-
void main() void main()
{ {
printf("hello"); inti=25,p=sqrt(i);
} printf("%d",p);
}
use header file math.h.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of #define preprocessor in c?
about c language
What are preprocessor directives in c?
What is c language & why it is used?
Can include files be nested? How many levels deep can include files be nested?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Can we use visual studio for c?
What is s or c?
What is build process in c?
What is calloc() function?
What do you mean by a sequential access file?
What are the various types of control structures in programming?
what are the facialities provided by you after the selection of the student.
What is the size of empty structure in c?
Is main a keyword in c?