fork download
  1. #include <stdio.h>
  2. int main () {
  3. int price = 0;
  4. float acres= 0.0f;
  5. char unit = '\0';
  6. char name[50] = "";
  7.  
  8.  
  9. printf("what's your age?");
  10. scanf("%d", &price);
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. printf("%d\n", price);
  19. printf("%f\n", acres);
  20. printf("%c\n", unit);
  21. printf("%s\n", name);
  22.  
  23.  
  24.  
  25. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
what's your age?0
0.000000