answersLogoWhite

0

A subroutine is a procedure call. In other words, a function call.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What do you mean by c language?

C is a programming language.


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 do you mean by c?

c is a programing language


You need to understand a subroutine's in order to use it?

You need to understand a subroutine's ____ in order to use it. a. internal structure b. local variables c. programming style d. interface


What is a function in C programming language?

A function is a subroutine that can be called from several places (re-usable code). Functions can accept arguments (or parameters) so that they can be more generalised and can also return a value to the caller.


Why C language is p?

C language is not p actually. Of course it might depend on what do you mean by 'p'.


Is c or c a procedural oriented language?

One definition of a "procedural programming language" is a language that is used to describe how a program should accomplish the task it is to perform. This is in opposition to a "declarative programming language" that is used to describe what the program should accomplish rather than how it accomplishes the task.


When a function does not return a value what kind of function is it called?

In most computer languages, a procedure that returns a value is called a function and a procedure that does not return a value is called a subroutine or subprogram. Usually the languages treat the passing of arguments/parameters differently between functions and subroutines. The C language does not distinguish between them. A subroutine that does not return a value is define as a "void" function indicating that no return value is used or available.


What does the letter C mean on a referee's shirt?

It means he cannot "c" (see) which is probably why most of his calls are going to be absolute garbage.


What are the colors in C programming language?

What exactly do you mean by colors?


C what does it mean?

Hundred Carbon A vitamin A programming language ...


What is the difference between end and Stop statement in c language?

There is no end or stop statement in C. You probably mean exit() and abort() function calls. The difference is that abort() terminates immediately, whereas exit() executes any functions passed to at_exit or at_quick_exit before terminating.