1
0

listing1.c 190 B

1234567891011
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int dogs;
  5. printf("How many dogs do you have?\n");
  6. scanf("%d", &dogs);
  7. printf("So you have %d dog(s)!\n", dogs);
  8. return 0;
  9. }