my program wont display the results of my calculations. heres my program. what am i missing?
#include <stdio.h>
#include <math.h>
int main(void)
{
/* Intialize variables. */
double intial_velocity, final_velocity, time, acceleration,
distance_travelled_1, distance_travelled_2;
/* Receieve input from the keyboard. */
printf("Enter the value for intial velocity(m/s). \n");
scanf("%f", &intial_velocity);
printf("Enter the value for final velocity(m/s). \n");
scanf("%f", &final_velocity);
printf("Enter the value for time(s). \n");
scanf("%f", &time);