Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / vikas kumar shakya
main() is a user defined function. it is the entry point of
any program.
At run time the main() function is searched as the entry to
start the program.
| Is This Answer Correct ? | 23 Yes | 6 No |
Post New Answer View All Answers
Write a program to generate random numbers in c?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain how do you determine a file’s attributes?
What are the properties of union in c?
What are # preprocessor operator in c?
Explain what is the benefit of using const for declaring constants?
What is structure of c program?
What is equivalent to ++i+++j?
How can you find out how much memory is available?
Can you define which header file to include at compile time?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is null pointer in c?
Explain how can you restore a redirected standard stream?
What are the ways to a null pointer can use in c programming language?
How can I call a function with an argument list built up at run time?