Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / hemanth
main method is inbuilt function.Execution of the program starts with main().JVM should know where the execution of the program start.If it is user defined function,why cant we write
int instead of void before main(string args[]).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is realloc in c?
What is the difference between strcpy() and memcpy() function in c programming?
Why enum is used in c?
praagnovation
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
How many main () function we can have in a project?
formula to convert 2500mmh2o into m3/hr
What is a const pointer?
Explain how can I write functions that take a variable number of arguments?
Differentiate between calloc and malloc.
What are the ways to a null pointer can use in c programming language?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the easiest sorting method to use?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What are the differences between Structures and Arrays?