x M5NanoC6での予定は、未定
オンラインコンパイラ paiza
#include <iostream>
using namespace std;
int main(void){
// Your code here!
short a;
a = 0x04 * 256 + 0xD2; //1234
printf("%d\n",a);
}
1234
・
・
おまけ(いろいろ説明すると長くなるが、なぜか上手くいく)
#include <iostream>
using namespace std;
int main(void){
// Your code here!
short a;
a = 0xff * 256 + 0xff; //1234
printf("%d\n",a);
}
-1