• printf problem
    still can't fix my printf problem ... I linked the program without the option to overlay variables and it still didn't work ... does this eliminate the overlay feature as a problem? my putchar...
  • printf problem
    putchar works but printf does not ... my putchar is used by printf so the problem must be in my code somewhere?? I started deleting sections of code until my printf started to work ... then I narrowed...
  • problem with printf
    I have a problem with the following code: #pragma LARGE #include <C8051F120.H> #include <stdio.h> char add(char a) reentrant { printf("Data is %d\n",a); if(a==255) { return 0; } else { return...
  • Printf problem
    Hi friends, I am using timer 0 & timer 2 interrupts for functionality and printf functions also am using to display the status .... (for printf statement Timer 1 using)some times that printf function...
  • printf() problem
    printf("%#02bx",0xff); The above line of code does what I'd expect, ie it prints out "0xff". However, printf("%#02bx",0x00); prints out "0x000000000000000"..... for a very long time. The...