query

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • starofvellore
    New Member
    • Feb 2008
    • 3

    query

    hai everybody!
    I want to know how to convert float values to string using linux C.
  • ashitpro
    Recognized Expert Contributor
    • Aug 2007
    • 542

    #2
    Originally posted by starofvellore
    hai everybody!
    I want to know how to convert float values to string using linux C.
    use function fcvt
    or
    sprintf(buf,"%f ",myfloat);

    Comment

    Working...