Hello, I am using XC16 v1.11 to compile some PIC24 code. In this I am using snprintf to limit the length of the output string. Example: void main ( void) { static char sBuffer ; static UINT16_ sCnt; sCnt = snprintf ( sBuffer, 5, "1234567890"); } When run,..
↧