I am attempting to get an output of:
Score:
0
but my output keeps coming out like
Score: 0
this is what I have implemented:
move_cursor(30,4);
printf_P(PSTR("Score : %8d\n"), get_score());
move_cursor(37, 8);
we are writing the score in Putty, from AVR to serial. What am I doing wrong?