LONG_LONG_MAX:long long int型の最大値★ ULONG_LONG_MAX:unsigned long long int型の最大値★ 必要なマクロのみをprintfで表示してやれば調べたい型の最大値や最小値を調べることはできるのですが、せっかくなので上記のマクロの全てを表示するソースコードを下記に用意ておきました。
printfを使う前提で文字列化はこちらに任せ、十進数で(二進数に見える)数字をテーブル管理する。 #define BCD(c) (__bits__[c])staticconstunsignedint__bits__[]={0,1,10,11,100,101,110,111,1000,1001,1010,1011,1100,1101,1110,1111,10000,10001,10010,10011,10100,10101,10110,10111,11000,...
ちなみに、wikipediaのLP64の項目などを見るとわかりますが、platformによってかなり挙動が違いますので、こういうbest practiceには従ったほうが良いです。 32 Register as a new user and use Qiita more conveniently You get articles that match your needs ...
long int strtol(const char *string, char **laststr, int basenumber); *string は長い整数に変換される文字列へのポインタです。 **laststr は変換を停止する位置を示すポインタです。 basenumber は[2, 36] の範囲の基底値です。
=int32Byte[i]; } public void PushUl(uint ul){/* for unsigned long(int32) access */ if(stackIndex + stackSize > stackMaxSize-1)throw new Exception("stack over flow"); stackPointer--;//POPはポインタ減少 stackIndex +=stackSize;//PUSHはインデックス増加 byte[] int32Byte =...