Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / ekta
1: Main is not a user defined function because user defined
functions can be given be given their own names .We can not
give a new name to main.
2:Main is not an inbuilt function because every inbuilt
function is defined in a specific library .But main has not
been defined in any library.it even works without libraries.
So finally main is just a convention to start a program.
Every language like java,c++,c all start their execution
from main.All programs need a starting point.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
why wipro wase
Is swift based on c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
How main function is called in c?
What is the use of gets and puts?
Explain b+ tree?
differentiate built-in functions and user – defined functions.
Which are low level languages?
What is the use of in c?
What is sizeof int?
Explain Basic concepts of C language?
Explain what are preprocessor directives?
Without Computer networks, Computers will be half the use. Comment.
In which header file is the null macro defined?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.