What are the naming rules for variables in C language?
When writing a program, it is often necessary to store data in memory in order to use the data or modify the value of the data. We usually use variables to store data, and using variables can reference the data stored in memory and process the data at any time as needed.
The concept of variables
In programming, the amount that allows its value to be changed is called a variable. A variable should have a name and occupy a certain storage location in memory. The variable name is represented by an identifier, which is actually a symbolic memory address. When the program is compiled and connected, the system assigns a symbolic address to each variable to save the value of the variable.
C language variable naming:
(1) i (commonly used n), int, integer, iSize
(2) n (commonly used s or sh), short, short integer type, nPort
(3) l, long, long integer type, lSum
(4) f, float, floating point type, fValue
(5) d, double, double precision floating point type, dValue
(6) u, unsigned
(7) ch (commonly used c), character type, chChar
(8) by, byte (unsigned character), byData
(9) b, Boolean, bIsTrue
(10) a (commonly used arr), Array, anNum[10]
(11) p, pointer, pFile
(12) fn, function, fnCallback
(13) sz, character ending with 0 String, szFileName
(14) s, string, sFileName
(15) g_, global variable, g_pFileLog
(16) s_, static variable, s_iCount
(17) e_, enumeration,
(18) t_, structure,
(19) u_, union,
(20) em , enumeration variable
(21) st (commonly used t), structure variable
(22) un, union variable
(23) _e, enumeration definition
(24)_t, structure definition
(25)_u, union definition
The above is the detailed content of What are the naming rules for variables in C language?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools
