1
0

02-Variables.c 201 B

1234567891011
  1. #include <stdio.h>
  2. int main() {
  3. int age = 20;
  4. float weight = 65.5;
  5. char grade = 'A';
  6. printf("Age: %d\n", age);
  7. printf("Weight: %.2f\n", weight);
  8. printf("Grade: %c\n", grade);
  9. return 0;
  10. }