Choosing the correct type: short : Short « Data Type « C / ANSI-C






Choosing the correct type: short

Choosing the correct type: short
/* Choosing the correct type: short */
#include <stdio.h>

void main()
{
  const float per = 4.5f;
  short a = 23500;            
  short b = 19300;                       
  short c = 21600;                       
  float revenue = 0.0f;                  

  short total = a+b+c; /* Calculate quarterly total */

  /* Output monthly sales and total for the quarter */
  printf("\n a: %d\n b: %d\n c: %d",a,b,c);
  
  printf("\n Total: %d",total);

  /* Calculate the total revenue and output it */
  revenue = total/150*per;
  printf("\nSales revenue  is:$%.2f\n",revenue);
}



           
       








Related examples in the same category