Answer the question
In order to leave comments, you need to log in
Define language?
f(a,b,c) {
a = b + c;
a = a - c;
return a;
}
Answer the question
In order to leave comments, you need to log in
Well, for example, C. There, if the type is not specified during the declaration, then it is considered that int.
It can still be B
Here you can see the documentation for B
7.3 Function Definitions
Function definitions have the following form:
name ( arguments ) statement
The name is initialized to the rvalue of the function. The arguments consist of a list of names separated by commas. Each name defines an automatic lvalue that is assigned the rvalue of the corresponding function call actual parameters. The statement (often compound) defines the execution of the function when invoked.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question