September 7, 200421 yr I just start to use and programm FSLCDHave some problem with the Output format in the FS menu.Does someone have explanation about the codification of the formatfor example:%.03f %05.1f ...If it's standard programming code does exist a table on internet who explain the differents signsThank'sBOB
September 21, 200421 yr Hi,,,The format of the output string is same than in the printf 'command' in the C. %[flags][width][.precision][modifiers]type.You can get more info f.ex from here; http://www.cplusplus.com/ref/cstdio/printf.htmlMost of the cases type it should be float.%.03f means 3 digits after decimal point vill be printed%05.1f means that 5 digits (incl. decimal point) with the one number after decimal point will be printed and 0 will be used instead of blanks in the beginning of the number!Hopefully this helps you!/Timo
Create an account or sign in to comment