You heard me, I want to know your guys' techniques for converting data types without using additional headers (such as studio.h).
Are there any tricks or intrinsic methods? Can I write my own method? I simply don't like adding unnecessary headers becasue I don't use 95% of the crap that comes along with them, and it gets compiled with my program anyway...
Most specifically, at the moment, I want to know how to convert a float to a string. there was a command I saw, like printf or something, but I'd be darned if I understood that! There were %s everywhere and it looks like I need the studio header..
Can I type cast? atoi and atof and all that require a header.. :-|
Ones you could help me with, if you're up to the challenge:
float --> char[]
char[] --> float
char[] --> int
and any others that you know, but I'm only interested in the above at the moment.. Thankie! :cheesy: