Ask Question

Create a float variable named area.

+5
Answers (1)
  1. 28 April, 04:02
    0
    float area;

    Explanation:

    The float datatype is used for storing the decimal number. The syntax of declaring float variable is given below.

    float variablename;

    float area;

    area=89.900002; / / storing the value

    following the program in c language

    #include / / header file

    int main () / / main function

    {

    float area=89.900002; / / declared and initialize a float variable

    printf ("%f", area); / / display the area value

    return 0;

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Create a float variable named area. ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers