• problem with printf()
    Hello, I want to ask a little bit help. I want to use the printf instruction with the Noice debugger. I can printf char or float fine but when I try to printf int or long I get a totally different...
  • 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
    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...