answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where function execution ends in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where does c language program begin execution?

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


Where execution does take start in C language?

It start with function - main()


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.


Is c procedural or structural language?

Structural language is a language in which a particular structure is defined. It is used to make execution and understanding easier. Ex : COBOL Structural language does not have function calls. Procedural language is a language in which function calls are allowed. Ex : C In this a particular procedure is followed every time. IMB.


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 is execution with respect to c language?

Synonym for program-run.


What is the differnce between ordinary function and template function of c language?

The c language does not have template functions. That is a c++ thing.


Where void main is called in c?

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


C program always begins with which function?

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


Call by function in c language?

I guess you meant the following:'In C language, when you call a function,the parameters are passed by-value.'


What are the library function in c language?

libray in c++


Why you use main function in c?

Because if you donot use main function in c program, the compiler willnot execute the program.C compiler starts execution from main function itself.