temp

How do you correctly define a variable called "temp" of type "double" that is initialised to a value of 20.0
Is that what you're looking for?
1
2
double temp = 20;
temp = 10;

Topic archived. No new replies allowed.