Home > Backend Development > C#.Net Tutorial > What does num mean in C language?

What does num mean in C language?

藏色散人
Release: 2020-02-10 10:32:00
Original
50047 people have browsed it

What does num mean in C language?

#What does num mean in c language?

num is the abbreviation of number. It is generally used as a variable to represent a number and has no special meaning. Of course, it depends on the specific function and specific program to determine its final meaning.

Recommended learning: c language video tutorial

num has no special meaning in C language. It is neither a keyword nor a function name of a library function.

may be a variable name or function name customized by the programmer.

is usually used to define a variable of numerical type, which is the first three letters of the English number.

For example:

int num; // 定义一个int类型的变量,变量名为num
double num; // 定义一个double类型的变量,变量名为num
int num(int a, int b) // // 自定义一个函数,函数名为num
Copy after login

The above is the detailed content of What does num 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