Dear Sir
I tried to print to the console window with printf (), but there was a difference between the following two codes.
I want to print the value of a variable with printf, do you know why 0 is displayed?
uint32_t i = 200;
printf ("\ n \ rvalue i =% d \ n", i);
printf ("value =% d \ n", 200);
Best regards