How to convert Char into Float

82.5k views Asked by At

How to convert an unsigned char value into a float or double in coding in AVR studio 4.?

Please help I am a beginner, my question may sound stupid too :/

Like I have got a char keyPressed

and I have printed it on the screen using lcd_gotoxy(0,0); lcd_puts (keyPressed);

Now I want to use this value to calculate something.. How to convert it into float or double? please help

3

There are 3 answers

5
Himanshu Pandey On BEST ANSWER

if you want for example character 'a' as 65.0 in float then the way to do this is

unsigned char c='a';
float f=(float)(c);//by explicit casting
float fc=c;//compiler implicitly convert char into float.

if you want for example character '9' as 9.0 in float then the way to do this is

unsigned char c='9';
float f=(float)(c-'0');//by explicit casting
float fc=c-'0';//compiler implicitly convert char into float.

if you want to convert character array containing number to float here is the way

#include<string>
#include<stdio.h>
#include<stdlib.h>
void fun(){
unsigned char* fc="34.45";
//c++ way
std::string fs(fc);
float f=std::stof(fs);//this is much better way to do it
//c way
float fr=atof(fc); //this is a c way to do it
}

for more refer to link: http://en.cppreference.com/w/cpp/string/basic_string/stof http://www.cplusplus.com/reference/string/stof/

0
0xF1 On

For character array input you can use atof.

0
M Ahmed Fayyaz On

Try this it works for me without any built in function or header file use.

    #include <iostream>
    using namespace std;
      int main(){
            int b[6];
            int i = 0, counter = 0;
            bool found = false;
            float temp,temp2;
            char a[6];
            cin >> a;
            while (a[i] != '\0')
            {
                b[i] = a[i];
                if (b[i] == 46){
                    found = true;
                }else{
                    b[i] -= 48;
                }if (found != true){
                counter++;
                }
             i++;
            }
           for (int j = 0; j < counter; j++) {
            temp *= 10;
            temp += b[j];
            }
            int dif = i - counter - 1;
            
         for (int j = counter+1; j <=counter+dif; j++) 
            {
            temp2 *= 10;
            temp2 += b[j];
            }
            for (int k = dif;dif>0;dif--){
            temp2 *=0.1;
            
           }
             temp+=temp2;
            cout << "\nfloat = " << temp << endl;
        }