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
Does c have class?
What are the different types of endless loops?
What is use of bit field?
Why do we use main function?
How do you do dynamic memory allocation in C applications?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
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:
What is the use of getch ()?
I heard that you have to include stdio.h before calling printf. Why?
Why does this code crash?
What is a nested loop?
what is uses of .net
What is time complexity c?
What is the size of empty structure in c?
What is variable initialization and why is it important?