ikeh1024のブログ

ZennやQiitaに書くにはちょっと小粒なネタをこちらに書いています

C言語のデータ型とSwiftのデータ型の対応表

  • GitHub Copilotで書き出したときのメモ
  • (間違いあったらご指摘ください)
C言語のデータ型 Swiftのデータ型
char Int8
unsigned char UInt8
short Int16
unsigned short UInt16
int Int32
unsigned int UInt32
long Int
unsigned long UInt
long long Int64
unsigned long long UInt64
float Float
double Double
long double CGFloat