What is meaning of "Void main" in C Language.
Answer Posted / sanjay pal
void main is necessary for every program.from this line
onward the program body starts.
before main there is a word void this means main return
nothing so parentheses() follwing main are also requrid
main is treated as a function in c and c++.
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
What is a pragma?
What is the difference between typedef struct and struct?
write a program to generate address labels using structures?
How do you view the path?
Why can't I perform arithmetic on a void* pointer?
What does == mean in texting?
Explain what does it mean when a pointer is used in an if statement?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What does %d do in c?
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 difference between null pointer and void pointer.
What is meant by high-order and low-order bytes?
Why do we need functions in c?
Explain the difference between structs and unions in c?
What is string function c?