Arduinoにおける文法は標準C言語と特に変わりはありません。
32ビット、-2,147,483,648から2,147,483,647までの数値を扱うことができます。
Exsample(from Arduino WEB-SITE)
[c]
ong speedOfLight = 186000L; // see the Integer Constants page for explanation of the ‘L’
[/c]
Arduinoにおける文法は標準C言語と特に変わりはありません。
32ビット、-2,147,483,648から2,147,483,647までの数値を扱うことができます。
Exsample(from Arduino WEB-SITE)
[c]
ong speedOfLight = 186000L; // see the Integer Constants page for explanation of the ‘L’
[/c]