Home > Backend Development > C++ > body text

What does fun(a,b) mean in C language

下次还敢
Release: 2024-04-29 21:33:14
Original
880 people have browsed it

fun(a, b) is the syntax for calling a function in C language, where fun is the function name and a and b are parameters. The syntax for calling a function is fun_name(argument_1, argument_2, ...), for example add(a, b) calls the add() function and passes parameters a and b.

What does fun(a,b) mean in C language

The meaning of fun(a, b) in C language

fun(a, b) is C The syntax for calling functions in the language, where:

  • fun is the name of the function to be called.
  • a and b are the parameters passed to the function.

How to call a function

To call a function, use the following syntax:

<code class="c">fun_name(argument_1, argument_2, ...);</code>
Copy after login

Where:

  • fun_name is the function name.
  • argument_1, argument_2, etc. are the parameters passed to the function.

Example

For example, the following code calls a function named add() and passes it two parametersa and b:

<code class="c">int a = 5;
int b = 10;
int result = add(a, b);</code>
Copy after login

In the above example:

  • add() is the name of the function to be called.
  • a and b are the parameters passed to the function.
  • result The variable will store the value returned by the function.

The above is the detailed content of What does fun(a,b) mean in C language. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!