The tour of C++: The basics

 1.Fundamental types:

bool  size 1

char size 1

int size 4

double size 8

A char variable is of the natural size to hold a character, and the sizes of other types are quoted in multiples of the size of a char.

The size of a type is implementation-defined and can be obtained by the sizeof operator.

EX: sizeof(char)=1,sizeof(int)=4

2.Arithemetic operators:

x+y //plus
+x  //unary plus
x-y //minus
-x  //unary minus
x*y //multiply
x/y //divide
x%y //remainder(modulus) for integers

3.Comparision operators:

x==y  //equal
x!=y  //not equal
x<y   //less than
x>y   //greater than
x<=y  //less than or equal
x>=y  //greater than or equal

4. Auto

Auto is a prompt that prompts the compiler to derive the type of a variable from its value., 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值