fork download
  1. #include<stdio.h>
  2.  
  3. main(){
  4.  
  5. int Price;
  6.  
  7. double price;
  8.  
  9. float total;
  10.  
  11. Price = 50;
  12.  
  13. price = 232.50;
  14.  
  15. total = Price + price;
  16.  
  17. printf("Price = %d\n",Price);
  18.  
  19. printf("price = %f\n",price);
  20.  
  21. printf("total = %.2f\n",total);
  22.  
  23. char blood = 'B';
  24.  
  25. char *name = "Ekapong";
  26.  
  27. char country[] = "Thailand";
  28.  
  29. printf("My Name is %s\n",name);
  30.  
  31. printf("My Country is %s",country);
  32.  
  33. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Price = 50
price = 232.500000
total = 282.50
My Name is  Ekapong
My Country is Thailand