#include int main(void) { double temperature; temperature = 19.0; //create a double and initialise right away int age = 99; printf("Today the temp is: %lf, and the huidity is %d", temperature, age); return 0; }