Nios® V プロセッサー・ソフトウェア開発者ハンドブック

ID 743810
日付 7/08/2024
Public
ドキュメント目次

15.2.1.2. GCC C/C++ 32 ビット・プロセッサー定数

表 48.  GCC C/C++ 32 ビット・プロセッサー定数をフォーマットする方法の例
C データ型
boolean (char, short, int) 1、0
32-bit signed integer (int, long) 123、-50
32-bit unsigned integer (unsigned int, unsigned long) 123u、0xef8472a0
64-bit signed integer (long long int) -4294967296LL、-4294967296LL
64-bit unsigned integer (unsigned long long int) 4294967296ULL、0xac458701fd64ULL
32-bit floating-point (float) 3.14f
64-bit floating-point (double) 2.78、314e-2
character (char) 'x'
string (const char*) "Hello World!"