Choosing the correct type: long : Long « Data Type « C / ANSI-C






Choosing the correct type: long

Choosing the correct type: long
/* 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;                  

  long 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: %ld",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

1.long value array
2.Summing integers - compact version
3.Use nested if to analyze numbers
4.Read long from keyboard
5.Convert long to short int