Ask Question
18 February, 09:40

Create a float variable named area.

+1
Answers (1)
  1. 18 February, 11:00
    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?
Get an answer to your question ✅ “Create a float variable named area. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers