answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

The user-defined main function is the point of entry for all C programs.

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

Execution begins at the main function and ends when we encounter a return statement within main, or we encounter an exit or abort function call during execution.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where does c language program begin execution?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is execution with respect to c language?

Synonym for program-run.


What is mean by thread in c sharp?

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


What is executive a c program?

I think it is 'execution of a C program'.


What are the four steps to run a program on a completely dedicated machine?

a) Reserve Machine Time b) Manually Load Program Into Memory c) Load Starting Address And Begin Execution d) Monitor And Control Execution Of Program From console


Four step that are necessary to an a program an a completely dedicated machine?

i. Reserve Machine Time; ii. Manually Load the program into the memory. iii. Load the starting address and begin execution. iv. Monitor and control execution through the use of Console.


Different parts of c language program?

what are the parts of C language program


List the four steps that are necessary to run a prog on completely dedicated machine.?

a. Reserve machine time. b. Manually load program into memory. c. Load starting address and begin execution. d. Monitor and control execution of program from console.


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


What has the author David Spuler written?

David Spuler has written: 'Comprehensive C' -- subject(s): C (Computer program language) 'C++ and C efficiency' -- subject(s): C++ (Computer program language), C (Computer program language)


Where execution does take start in C language?

It start with function - main()


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.


C program always begins with which function?

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