Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
10-29-2007, 03:30 PM
|
#1
|
|
LQ Newbie
Registered: Oct 2007
Posts: 1
Rep:
|
Converting float to ascii in C
Hi All:
I am using the IDE in CodeWarrior MPC555 V8.1. I used the atof function to convert a decimal input value from ascii to float.
Now, I am looking for a way to convert a float value to ascii for display. Unfortunately, the MPC555 does not have ftoa functionality.
I am not fluent in C, so any suggestions would be most appreciated!
Thanks,
C_to_be
|
|
|
|
10-29-2007, 03:47 PM
|
#2
|
|
Senior Member
Registered: Mar 2002
Location: Los Angeles, CA
Distribution: Debian, Ubuntu
Posts: 1,334
Rep:
|
Quote:
Originally Posted by C_to_be
Hi All:
I am using the IDE in CodeWarrior MPC555 V8.1. I used the atof function to convert a decimal input value from ascii to float.
Now, I am looking for a way to convert a float value to ascii for display. Unfortunately, the MPC555 does not have ftoa functionality.
I am not fluent in C, so any suggestions would be most appreciated!
Thanks,
C_to_be
|
char foo[32];
sprintf(foo,"%f",some_float_val);
|
|
|
|
10-29-2007, 06:41 PM
|
#3
|
|
HCL Maintainer
Registered: Jan 2006
Distribution: (H)LFS, Gentoo
Posts: 2,450
Rep:
|
Quote:
Originally Posted by BrianK
char foo[32];
sprintf(foo,"%f",some_float_val);
|
This can be safer (although it is highly unlikely to have a 32-character decimal representation for a float, it is helpful to teach novice C programmers to use safe programming practices):
Code:
char foo[32];
snprintf(foo, sizeof(foo), "%f", some_float_val);
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 06:25 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|