Answer Posted / pradeep
It is not a c program if it is not using main function.
Compiler starts execution from main function always.
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
why programs in c are running with out #include
What is #include stdio h?
What is the use of ?: Operator?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What do you know about the use of bit field?
What is the difference between malloc() and calloc()?
Do you know the purpose of 'register' keyword?
What is the use of a conditional inclusion statement in C?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Is Exception handling possible in c language?
What is getche() function?
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 the use of 'auto' keyword in c programming?
The statement, int(*x[]) () what does in indicate?