main is a predefined or user define function
if user defined why?
if predefined whay?
Answer Posted / s.s.venkatesh
the main() is a predefined function because we can't change
the name of the function or characterstics of the function.
If the function is user defined means we can change the
name of the function as we wish.
So,the main() is a predefined function.
| Is This Answer Correct ? | 20 Yes | 21 No |
Post New Answer View All Answers
How the c program is executed?
What is class and object in c?
Can you pass an entire structure to functions?
How can you tell whether two strings are the same?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is the default value of local and global variables in c?
What are types of preprocessor in c?
in iso what are the common technological language?
Explain the difference between null pointer and void pointer.
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
Explain what is a pragma?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Can a pointer be null?
What are register variables? What are the advantage of using register variables?
What is array in c with example?