Sign In
Ask Question
Martin Dyer
Computers & Technology
28 April, 03:42
Create a float variable named area.
+5
Answers (
1
)
Elliana
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;
}
Comment
Complaint
Link
Know the Answer?
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
You Might be Interested in
Give pseudocode for an algorithm that removes all negative values from an array, preserving the order of the remaining elements.
Answers (1)
Which function would you use to make sure all names are prepared for a mailing label?
Answers (2)
What are network operating systems
Answers (1)
What are the two houses in Congress? Congress: Select the best answer from the choices provided. The House of Commons and the House of Lords The Legislative House and the Rules Committee The House of Representatives and the Senate The Low Senate and
Answers (1)
Why can't errors be avoided
Answers (2)
New Questions in Computers & Technology
Which of the following would a typical e-commerce website not include? blog customer comments employee salaries retail store information
Answers (1)
What is the difference between a rendering engine and a browser engine?
Answers (1)
Write a program to calculate the area of a triangle whose base is 10cm and height is 6cm
Answers (1)
This type of brake fade is caused by the brake fluid becoming so hot that it boils:a. Fluid fade b. Hydraulic fade c. Heat fade d. Water fade
Answers (1)
Recall that with the CSMA/CD protocol, the adapter waits K. 512 bit times after a collision, where K is drawn randomly. a.
Answers (1)
Home
»
Computers & Technology
» Create a float variable named area.
Sign In
Sign Up
Forgot Password?