Posts: 76
Threads: 20
Joined: Jul 2014
Reputation:
0
Hello.
format(teststring,sizeof(teststring),"")
This function clears the "teststring" before formatting it?
Posts: 2,856
Threads: 6
Joined: Jun 2007
Reputation:
0
That would work but would be a waste
Use teststring[0] = 0; or = EOS; // end of string
Posts: 76
Threads: 20
Joined: Jul 2014
Reputation:
0
I asked something...answer to my question. format(), will clear the string "teststring" before formatting it, or will add text like at strcat();?
Posts: 276
Threads: 17
Joined: Apr 2006
Reputation:
0
You could've tested it by yourself and saved a lot of time.