Sign In
Ask Question
Computers & Technology
Guest
18 February, 09:40
Create a float variable named area.
+1
Answers (
1
)
Timothy Sullivan
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;
}
Comment
Complaint
Link
Know the Answer?
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
You Might be Interested in
Julian is adding a column of numbers as he inputs expenses from his receipts. Holly wants to create a simple comparison between two grocery stores. Which type of tab alignments would most likely suit each person?
Answers (1)
A vast global network that is made up of many smaller interconnected networks is known as: The Internet The World Wide Web HTML Web browsers
Answers (1)
Using a while loop, write a code that will continue to calculate the following equation until the solution gets to be above 100, x will start at zero.
Answers (1)
Complete the statement below with the correct term. A a0 network uses cables to connect the server to workstations and other equipment.
Answers (2)
It is safe to stand on the top step of a ladder provided it is braced property
Answers (1)
New Questions in Computers & Technology
Which property of a text element controls how the browser handles text that does not fit within the element box? A. width B. overflow C. padding D. margin
Answers (1)
What is the term for movement in particular direction
Answers (2)
How accurate is the usps expected delivery date?
Answers (1)
When reassembling your pc what does the text recommend as the first step?
Answers (1)
During a test, it is okay to click on any of Blackboard's navigation buttons, the Refresh button, or your browser's Back button. True / False.
Answers (1)
Home
»
Computers & Technology
» Create a float variable named area.
Sign In
Sign Up
Forgot Password?