answersLogoWhite

0

Whatever the programmer wants it to be.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What function does every C program have Why should you split large programs into several functions?

Every C program has a main() function.


Where do we write main function in a c program?

Into the source program.


What must every c program have?

A main function must be present in every C program.


What is main function used in c?

if you do not used main function in c program when errors are accrued


C program always begins with which function?

That's up to you, but the execution of the program begins with function main.


What are its program components?

the main() function,the#include Directive, the variable definition. function prototype, program statements, the function definition,program comments and braces are the components of program in C++


Write a program in C without any functions?

It is not possible. In C, any program must have at least one function to be able to compile and execute properly: the function main()


What is the only function all C plus plus programs must contain?

Every C plus plus program that is a main program must have the function 'main'.


Can a function be called from more than one place in a program in c plus plus?

In C and C++, as well as in many (all?) languages, a function can be called from more than one place in a program. That's the purpose of functions - to encapsulate pieces of code that are needed in more than one place in the program.


What is the importance of using functions in a c program?

C programs do not function without functions.


What is the importance of functions in a c plus plus program?

Functions are very important in C++, as you can't write the simplest program to print hello without using a function. Overall you can say that function are building blocks of a C++ program. Functions can also be defined by the programmer to reduce program size.


What is a main function in c plus plus?

It is the first function that gets called when the program is executed.