C 語言基礎 例程 C 的資料型別和運算子

2021-07-03 09:50:13 字數 1456 閱讀 1772

賀老師的教學鏈結

第乙個c++程式

#include //包含標頭檔案iostream

using

namespace

std; //使用命名空間std

int main( )

結構體型別在定義變數時,其前struct可以省略

#include 

using

namespace

std;

struct student

;int main( )

新增作用域運算子 ::

#include 

using

namespace

std;

float a=2.4; // 全域性變數a

int main()

std::,表明使用命名空間std中定義的識別符號

#include 

//這兒不寫使用的命名空間

float a=2.4;

int main()

引用的簡單使用

#include 

#include

using

namespace

std;

int main( )

增加引用型別,主要用於擴充函式傳遞資料功能

#include 

using

namespace

std;

void swap(int &a,int &b);

int main( )

void swap(int &a,int &b)

常變數(constant variable)

#include

using

namespace

std;

const

int price = 30;

int main ( )

符號常量(巨集定義) vs.常變數

#include 

using

namespace

std;

#define price 30 //不是語句,末尾不加分號

int main ( )

c++的程式設計師更愛常變數

#include

using

namespace

std;

const

int price = 30;

int main ( )

c語言基礎 資料型別

c語言中有四種基本資料型別 整型 浮點型 指標和聚合型別 陣列和結構等 其他型別由此四種派生而成。1 整數型別 整型包含 字元 char 整型 int 長整型 long 和短整型 short 都分為有符號 signed 和無符號 unsigned 兩種。按位數有short int long,其中sh...

c語言基礎 資料型別

c語言基本資料型別大體上分為 整型 和 浮點型 位元組 計算機中最小的儲存單位 1 byte 8 bit 整型 int 4 short 2 long 4或者8 char 1 浮點型 float 4 double 8 常量 程式執行過程中,值不能被改變的量 常量分為 整型常量.浮點型常量.字元型常量 ...

C語言基礎 資料型別

基本型別就是我們在使用c語言時最基礎的資料型別,包括整形 短整型,基本整型,長整型 字元型 浮點型 單 雙精度 以及列舉型別。在程式設計的過程中只使用基本型別是遠遠不夠的,為了滿足需求,因此還要使用基本型別之外的型別,構造型別就是其中的一種。構造型別可以使用基本型別構造出新的資料型別來滿足實際開發中...