answersLogoWhite

0

It's called 'main' by tradition; this feature lets the linker to know, where to start the execution.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

When a language is used in a country as the main language how is it called?

Normally, the main language is the official language in a country. In countries without an official language, such as the United States, the main language is called the national language.


Who is calling main function in c?

in c main function initailly called by operating system.


Where execution does take start in C language?

It start with function - main()


Why we use function prototyping in c language?

You could just define the whole function before it is called, like this:void do_nothing(){}main(){do_nothing();}but if you define the function after it is called, the compiler will arrive at the function's calling before its actual definition. If you prototype your function earlier in the code than the function's call, the compiler will look for the function first.Hope I was able to help.


Where void main is called in c?

main() is the function from where the execution starts.


Explain you how you can impliment programme in c language without main function?

You can't. If you have no main function, then there is no entry point to your code and it cannot be executed. Code without a main function is essentially a library. In MS Windows, GUI mode, you don't have to have main function. (WinMain is used instead).


What is the definition for call by value in c language?

A function is called within a function either called by value or called by reference.When a function is called by passing the values of one or more variables,then the value is copied to a new var of the function's own var of its scope.Ex:void main(){...........c=fun(a,b);...}fun(int c,int d){ int t;t=c+d;return(t);}


Can you write any c prigramme in c language witthout any function?

No. At minimum, you need to provide a main() function.


What is the main function of the FCC?

The main function the FCC is that they block offensive language onTV shows and nudity, if you have a television series and you do not follow the FCC rules you will have to pay a fine.


Write a Program in c language to find the LCM without using functions?

You're supposed to do your homework yourself. (Mind you, you have to hav at least one function called main.)


What was the British language in the year 1650?

The main British language at that time was called "English".


What is the function of void main in c language?

Actually, it is:int main (void)orint main (int, char **)the point where the execution of the program begins