What are the special symbols in C language?
In the C programming language, usually, special symbols have special meanings and cannot be used for other purposes.
Some special symbols used in C programming are as follows −
[] () {}, ; * = #
Let us know their definition as follows:
Square brackets [] - The opening and closing of square brackets are used for array element references to represent single and multidimensional subscripts.
Parentheses () - These special symbols are used for function calls and function parameters.
Curly braces {} - The opening and closing of curly braces indicates the beginning and end of a block of code that contains multiple executable statements.
Comma (,) - used to separate multiple statements, such as parameter separation in function calls.
Colon(:) - This is an operator that actually calls something called an initialization list.
Semicolon (;) - It is called statement terminator and indicates the end of a logical entity. This is why each individual statement must end with a semicolon.
Asterisk (*) - used to create pointer variables.
Assignment operator (=) - used for assignment.
Preprocessor(#) - The preprocessor is called a macro processor and is used by the compiler to transform your program before the actual compilation begins.
The following table gives the corresponding meanings of special symbols in the C programming language.
Symbol | Meaning |
---|---|
##~ | tilde|
!#$ # #exclamation mark |
pound sign dollar sign |
&
Percent sign Insert symbol |
and symbol
| *
)
## Asterisk Left bracket | Right bracket
_ |
,
Underscore Plus sign | Comma##. | /
##Period Slash Vertical bar |
\ ` |
##BackslashapostropheMinus sign |
##= ##> |
Equal signLeft angle bracketRight angle bracket | ##? { } |
Left brace Right brace | ##[]: |
Right square bracketColon | ";
Quotation marks |
##
The above is the detailed content of What are the special symbols 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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Which number formats you can choose on iOS 16 With changes to iOS 16.4 (beta 2), you can choose from three different number formats for your iPhone. These formats use spaces, commas, and periods as symbols that separate thousands digits in numbers or as decimal points. The decimal point is the character used to separate the integer part of a value from its fractional part, usually assigned by a period (.) or a comma (,). The thousand separator is used to separate multi-digit numbers into three groups, usually specified by a period (.), a comma (,), or a space ( ). On the latest version of iOS, you'll be able to apply any of the following number formats as your iPhone's preferred option: 1,23

In the C programming language, typically, special symbols have special meanings and cannot be used for other purposes. Some special symbols used in C programming are as follows −[](){},;*=# Let us understand their definitions as follows: Square brackets []-The opening and closing of square brackets are used for array element references, indicating Single and multidimensional subscripts. Parentheses () - These special symbols are used for function calls and function parameters. Curly braces {} - Opening and closing curly braces indicate the beginning and end of a block of code that contains multiple executable statements. Comma (,) - used to separate multiple statements, such as parameter separation in function calls. Colon (:) - This is an operator that actually calls something called an initialization list. Semicolon (;) - it is called a slang

Change the decimal separator and number format in MacOS Ventura Go to the Apple menu and select "System Settings" Go to "General" Select "Language & Region" Find "Number Format" and pull down the submenu next to it to access the various number format options , allowing you to change the decimal separator to a comma, dot, or space to choose your desired number format, and the setting will instantly apply throughout MacOS. "Number format" missing in MacOS Ventura system settings? Some Mac users using different locales have found that the number formatting section is missing from their MacOS Ventura system settings, whether this is a serious oversight or a cute bug. Anyway, if you find yourself missing a number grid

PHP server script delimiters include "<?php", "<?", "?>", "<!--" and "//-->". Detailed introduction: 1. "<?php", which is the most common start tag in PHP, is used to identify the beginning of the PHP code block. After this tag, any PHP code can be written; 2. "<?" The short tag is another type of start tag in PHP. It is relatively concise and can be modified through settings in the PHP configuration file. Since the short tag may conflict with tags in other languages, its use is not recommended and so on.

How to use the split() method of the String class to split a string based on a certain delimiter Overview: In the Java programming language, the String class is a very important and commonly used class. The String class provides many practical methods, among which the split() method is used to split strings. The split() method splits a string into multiple substrings based on the specified delimiter and stores these substrings in a string array. This article will introduce how to use split of String class

How to split a string by specified delimiter using split() function of String class in Java In Java, String class is a very commonly used class that provides many useful methods to process and manipulate strings. One of the commonly used methods is the split() function, which can split a string into multiple substrings according to the specified delimiter. The syntax of the split() function is as follows: String[]split(Stringregex) where regex is a

Complete collection of PHP server script delimiters: To fully understand the usage and characteristics of various delimiters, specific code examples are required. 1. Introduction In the process of writing PHP server scripts, in order to implement different functions and logic, we need to use various delimiters. Delimiters play a very important role in PHP code and can be used to separate characters, strings or code blocks, etc. This article will introduce common delimiters in PHP server scripts, explain their usage and characteristics in detail, and provide relevant code examples so that readers can better understand and apply them. two,

A delimiter is a character that separates a string from other characters, for example in sentences in our daily reading activities we separate different words by spaces. In mathematics and regular expressions, we use () brackets as the main delimiter. The concept of substrings and their operations is very important in programming, especially in the C language, which is used to write compilers and assemblers. Identifies delimiters in a string and copies the characters after the starting delimiter into another variable, up to the ending delimiter. The == and != operators can be used to compare characters in a string to a user-specified delimiter character. Use the scanf() function to accept a string from the user, so spaces cannot be part of the string. If you use puts() or other functions or methods, you can
