answersLogoWhite

0

One.

int main (void) { return 0; }

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

How do you write a program in C using the fprint and fscan functions?

By using those two functions in your code.


Why you divide a program into functions?

In order to make a large program more manageable, it is convenient to identify and isolate specific tasks that a program performs and to separate out those tasks into functions. These functions are used/invoked as needed by the main part of the program. They can also be invoked by other functions. Often a program will perform the same task in different parts of the program. Using a function to perform the task and invoking the function from the different parts of the program means that only one copy of the code is needed. This helps reduce the size of the program.


How do you merge 2 Visual C programs to get a single output?

You cannot. A C program can only have one global main function but you'd be trying to compile a program that has two main functions. The only way to merge the two programs is to modularise both programs so that neither is dependent upon their main functions. Once modularised, you can include those modules in any program. Alternatively, you can create binary libraries from the modules and link them into any program.


Is the main function in C a built-in function or user-defined function?

The main function in C is user-defined. Built-in functions are simply those that do not require a library to be included, but every program must provide a user-defined point of entry; it cannot be built-in. Indeed, most functions in C are user-defined; the built-in functions are mostly operators rather than functions although most do behave like functions. The standard library functions are not built-in either; they all require the inclusion of the appropriate standard library header.


What is the difference between Built in Function and User Defined 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.

Related Questions

How do you write a program in C using the fprint and fscan functions?

By using those two functions in your code.


What does openoffice 3.2.1 draw do?

It performs similar functions to those in Microsoft's Paint program.


Why you divide a program into functions?

In order to make a large program more manageable, it is convenient to identify and isolate specific tasks that a program performs and to separate out those tasks into functions. These functions are used/invoked as needed by the main part of the program. They can also be invoked by other functions. Often a program will perform the same task in different parts of the program. Using a function to perform the task and invoking the function from the different parts of the program means that only one copy of the code is needed. This helps reduce the size of the program.


What are essential genes and non essential genes?

Essential genes are genes that are indispensable to support cellular life. These genes constitute a minimal gene set required for a living cell. Nonessential genes are the opposite. The cell can still live without them.


What is the purpose of function in PHP program?

The function keyword in PHP allows users to define functions beyond those built into the language, like so: function isFour ($number) { return $number == 4; }Functions in any language, including PHP, allow the developer to re-use their code. Without functions all of the code required to do the simplest of tasks must be re-written constantly; but with functions you must only write the code once and then call it whenever needed.


Is header file the library file?

No. Header files are those which contains declaration part of function & library files are those which contains definition part of function. These are those functions which we called in our program by using header files.


How do limiting factors affect populations?

It is impossible for a population to exist if it does not have access to the required limiting factors, and one essential of those factors is they balance the number of population in an area.


How do you merge 2 Visual C programs to get a single output?

You cannot. A C program can only have one global main function but you'd be trying to compile a program that has two main functions. The only way to merge the two programs is to modularise both programs so that neither is dependent upon their main functions. Once modularised, you can include those modules in any program. Alternatively, you can create binary libraries from the modules and link them into any program.


How do you run a java program which has import javalang commands?

Just like any other java program. Actually speaking importing the java.lang package is not required. But, importing it doesnt make any difference. The program will work just fine with or without those statements


What enzymes are always present in a cell at relatively constant amounts?

Enzymes that are considered housekeeping enzymes, such as those involved in basic cellular functions like glycolysis or the citric acid cycle, are typically present in relatively constant amounts in a cell. These enzymes are essential for maintaining cellular metabolism and are consistently required for the cell to function properly.


Which individuals are required to have both site specific confined space training and general confined space program training?

Those required to have both site specific and general confined space training include:entrantsentry supervisorsattendantsrescuerstesters and monitorsMinersShip builders


Is OLE often referred to as integration?

Yes. Object Linking and Embedding is what allows you to insert content from one program into another, across applications. Integration is the combining of commonly used functions into one application, or the allowing those functions to be accessed across a collection of applications.