以下实际输出什么
#include <stdint.h>
#include <stdio.h>
void show_percent( uint8_t percent )
{
printf( "%3d%%\r", percent );
}
void test(void)
{
uint32_t all=127353416;
for(uint32_t offset=0;offset<all;offset+=500){
show_percent( offset * 100/ all );
}
}
int main()
{
test();
}