• I call sscanf, but the compiler calls scanf instead!
    The following codes show the problem. #include <stdio.h> void main() { char str[10]; sscanf(str, "hello"); } The call tree is: OVERLAY MAP OF MODULE: ssanfTst (MAIN) SEGMENT BIT_GROUP DATA_GROUP...
  • I call sscanf, but the compiler calls scanf instead!
    The following codes show the problem. #include <stdio.h> void main() { char str[10]; sscanf(str, "hello"); } The call tree is: OVERLAY MAP OF MODULE: ssanfTst (MAIN) SEGMENT BIT_GROUP DATA_GROUP...
  • what is the difrrent between printf & sprintf and scanf & sscanf
    Hello to All what is the different between printf & sprintf and scanf & sscanf I read the help but i dont understand it printf("Hello world \n"); aprintf("Hello world \n"); ---------...
  • what is the difrrent between printf & sprintf and scanf & sscanf
    Hello to All what is the different between printf & sprintf and scanf & sscanf I read the help but i dont understand it printf("Hello world \n"); aprintf("Hello world \n"); ---------...
  • sscanf() does not work correctly
    When I use following statement in the code which runs on ARM9, it does not correctly parse the IP address. I am using standard function for sscanf(). main() { unsigned char ip[16]; sscanf("255...