Home Backend Development C++ What are the special symbols in C language?

What are the special symbols in C language?

Aug 26, 2023 pm 01:41 PM
delimiter Special symbols: operators identifier.

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 −

[] () {}, ; * = #
Copy after login

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.

tilde##%##^*(Right bracketComma/|-Question mark##[Left square bracket"Semicolon
Symbol Meaning
##~
!

#$

# #exclamation mark

pound sign

dollar sign

&

Percent sign

Insert symbol

and symbol

)

## Asterisk

Left bracket

_

,

Underscore

Plus sign

##.

##Period

Slash

Vertical bar

\

`

##Backslash

apostrophe

Minus sign

##=

##>

Equal signLeft angle bracket

Right 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!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to change number format on iPhone How to change number format on iPhone Apr 13, 2023 pm 06:16 PM

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

What are the special symbols in C language? What are the special symbols in C language? Aug 26, 2023 pm 01:41 PM

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

How to change the decimal separator from comma to dot in MacOS Ventura How to change the decimal separator from comma to dot in MacOS Ventura Apr 15, 2023 pm 12:43 PM

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

What are the delimiters for php server scripts? What are the delimiters for php server scripts? Sep 18, 2023 pm 01:58 PM

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 split a string based on a certain delimiter using the split() method of String class How to split a string based on a certain delimiter using the split() method of String class Jul 24, 2023 pm 09:32 PM

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 use split() function of String class in Java to split a string by specified delimiter How to use split() function of String class in Java to split a string by specified delimiter Jul 25, 2023 pm 04:49 PM

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

In-depth understanding of PHP server script delimiters: comprehensively master the usage and characteristics of various delimiters In-depth understanding of PHP server script delimiters: comprehensively master the usage and characteristics of various delimiters Jan 11, 2024 pm 05:16 PM

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,

Extract substrings between any pair of delimiters Extract substrings between any pair of delimiters Aug 26, 2023 pm 02:21 PM

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

See all articles