answersLogoWhite

0

It simply means that main is not part of a pre-written library like printf or sleep.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the way by which you can make the user defined the size of the arrays?

By using the library function #define A[] we can define the size of arrays


How to know whether the function is user define function or library function?

You don't have to know. Library functions are also written by somebody, aren't they?


Why main function named as main why not start or anything else?

The int main() function named main because by writing this we are trying to reduce the name conflicts from the above function defination which can be anything by the user defined function


What are user defined data types?

Actually user defined data type made by user like array,structure,union,pointer. the data type which is define by user or programer according to his need is called user define data type and also called the programer define data type........


What is the main function of Disk Operating System?

The main function of a DOS is to operate the hard ware to allow a user to utilise the computer.


What is the main function of an umbrella?

The main function of an umbrella is to provide protection from rain or sunlight by creating a barrier between the user and the weather elements.


Is main a predefined function in java?

No. It is a user defined function which the person who is creating the java class has to code by himself.


What is the user defined function section in C language?

There are no 'sections' in C source, you can define functions anywhere, except inside another function or variable/type definition.


What can a function be defined as?

Definition: By function We Means In C which Perform Some Specific Task..e.g Print Scan etc. The function Should Inclosed of Parantheses. There Are two Types Of Function 1.User Define Function 2.Built in function


If a drug user becomes unable to function normally with out the drug it is called?

It is called "Addiction"


What Difference between built-in function and user define function?

Built-in functions are functions that are provided for you by the standard includes. User-defined functions are those that you write yourself. Third-party functions are those that are written for you, but that are not provided by the standard includes.


How event driven program is different from other program?

In normal (ie imperative) programming, you define a set of operations to be performed sequentially, from start to finish in one go. In event driven programming, you define a series of "callback" functions, which are then called by whatever runtime system you may be using, in response to the actions of the user, or some other agent. Each function is associated with an action (eg the user pressing a button or clicking an icon), and is called by the system whenever the user performs that action.