1. 程式人生 > >C語言高級編程

C語言高級編程

void 結構體 switch efault enum extern vol continue tin

C的關鍵字:

  • 數據類型關鍵字:char、short、int、long、float、double、unsigned、signed、struct、union、enum、void
  • 控制語句關鍵字:if、else、switch、case、default、for、do、while、break、continue、goto、return
  • 存儲類關鍵字:auto、extern、register、static、const
  • 其他關鍵字:sizeof、typedef、volatile

數據類型

  • 基本類型:int、short、long、char、float、double
  • 構造類型:數組、結構體(struct)、共用體(union)、枚舉(enum)
  • 指針類型:char *、int *、int **等

C語言高級編程