Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / sree
main() itself is a predefined function.
where as main() is a userdefined function because there we
are writing the internal part.
Is This Answer Correct ? | 27 Yes | 8 No |
Post New Answer View All Answers
What is switch in c?
Write a program to generate random numbers in c?
What is the advantage of using #define to declare a constant?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is context in c?
How many types of sorting are there in c?
What are compound statements?
What is %d used for?
Give differences between - new and malloc() , delete and free() ?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Why is c so important?
Explain what are preprocessor directives?
while initialization of array why we use a[][2] why not a[2][]...?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?