main is a predefined or user define function
if user defined why?
if predefined whay?
Answer Posted / vignesh1988i
actually main function is a user defined function for the C
compiler developer.... but it is a built in or predefined
function according to the users using that compiler.... why
it is called as a predefined function because , the
prototype has already been defined in the compiler itself
we the users can't change the meaning of that unless or
until we write our own compiler , we can change the meaning
of main()......
for the main() , we don't know what is the prototype or
where the function has been called and wht excatly the
return value of it... it is built in and abstracted from the
user which is called abstraction in c++.........
thank u
| Is This Answer Correct ? | 64 Yes | 16 No |
Post New Answer View All Answers
Write a code to generate a series where the next element is the sum of last k terms.
What is ambagious result in C? explain with an example.
What is null in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
while initialization of array why we use a[][2] why not a[2][]...?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Which is best linux os?
What is volatile c?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What are reserved words with a programming language?
Explain how can you tell whether a program was compiled using c versus c++?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Can you tell me how to check whether a linked list is circular?
Which is better malloc or calloc?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.