[memo][C言語] 型一覧【作成中:必要最低限だけメモ】
備忘録です。
$ vi 01_type.c
------------------------------
#include <stdio.h>
int main(){
char char_sample = 'a';
int int_sample = 3000;
printf("%c\n",char_sample);
printf("%d\n",int_sample);
return 0;
}
------------------------------
$ gcc 01_type.c -o 01_type_c
$ ./01_type_c
a
3000