Write a single statement that prints outsideTemperature with 2 digits in the fraction (after the decimal point). End with a newline. Sample output: 103.46
#include
int main(void) {
double outsideTemperature = 103.45632;
return 0;
}
Please answer in C Programming please. I got this from Zybooks.com and I can seem to figure this problem out.