Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C 数据类型


数据类型

变量章节 中所述,C 中的变量必须具有指定的 **数据类型**,并且您必须在 printf() 函数中使用 **格式说明符** 来显示它

示例

// 创建变量
int myNum = 5;             // 整数(整数)
float myFloatNum = 5.99;   // 浮点数
char myLetter = 'D';       // 字符

// 打印变量
printf("%d\n", myNum);
printf("%f\n", myFloatNum);
printf("%c\n", myLetter);
自己试试 »

基本数据类型

数据类型指定变量将存储的信息的大小和类型。

在本教程中,我们将重点介绍最基本的数据类型

数据类型 大小 描述 示例
int 2 或 4 字节 存储整数,不包含小数 1
float 4 字节 存储小数,包含一个小数或多个小数。足以存储 6-7 位小数 1.99
double 8 字节 存储小数,包含一个小数或多个小数。足以存储 15 位小数 1.99
char 1 字节 存储单个字符/字母/数字,或 ASCII 值 'A'

基本格式说明符

每种数据类型都有不同的格式说明符。以下是一些格式说明符

格式说明符 数据类型 尝试
%d%i int 尝试 »
%f%F float 尝试 »
%lf double 尝试 »
%c char 尝试 »
%s 用于 **字符串(文本)**,您将在后面的章节中学习更多关于字符串的内容 尝试 »

注意:务必为指定的数据类型使用正确的格式说明符。如果不这样做,程序可能会产生错误甚至崩溃。


C 练习

通过练习测试自己

练习

为以下变量添加正确的数据类型

 myNum = 5;
 myFloatNum = 5.99;
 myLetter = 'D';

开始练习



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.