answersLogoWhite

0

It start with function - main()

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is execution with respect to c language?

Synonym for program-run.


Why the main function is called userdefine function in c language?

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


What is mean by thread in c sharp?

A thread, in any language, is an independent execution path through a program.


Objective questions on C programming language with answers?

For a start: Q: What is the name of the language? A: It is "C".


How i will get c language on my PC?

For a start, you can install a C-compiler.


Where function execution ends in c language?

In C, function execution ends with the return statement or when execution encounters the last brace, }, that matches the opening brace, {. If the function is typed, such as int myfunc(), then encountering the last brace is considered an error, because that sequence returns no value.


Why is c language good at performance speed of execution than any other computer languages?

I don't believe it is.


Main() is the where the program begins its execution?

Yes, the main() function is typically the entry point of execution for many programming languages, such as C, C++, and Java. When a program is run, the operating system calls the main() function to start the execution process. This function usually contains the core logic of the program and may invoke other functions or methods as needed. Its structure and behavior can vary based on the language and the specific requirements of the program.


Linker and loader in c language?

There is no such thing in the C language, but it is true that operating systems have a component called loader which loads binary program-files (whose source may be written in C language) into the memory and prepares them to the execution.


Where does c language program begin execution?

The execution of the program starts with function main, wherever it is in the source.


“How can we learn the computers language”?

You want to learn start c language. And do practice.


What is fast code execution C language?

example: int main (void) { puts ("That's all"); return 0; }