Advertisement
DrAungWinHtut

intro.c

Mar 1st, 2023
736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.    
  5.  
  6.     int age;
  7.     int tax;
  8.    char c;
  9.     float f;
  10.  
  11.     age = 10;
  12.     c = 'a';
  13.     f = 2.45;
  14.  
  15.     printf("Please Enter your age: ");
  16.     scanf_s("%c", &c);
  17.  
  18.     //Process
  19.     tax = age * 2;
  20.  
  21.     printf("age = %d years so the tax will be %d kyats\n", age,tax);
  22.     printf("char = %c \n", c);
  23.     printf("float = %f \n", f);
  24.  
  25.  
  26.     return 0;
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement