sweetie2.c 231 B

123456789101112
  1. // sweetie2.c -- a counting loop using for
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. const int NUMBER = 22;
  6. int count;
  7. for (count = 1; count <= NUMBER; count++)
  8. printf("Be my Valentine!\n");
  9. return 0;
  10. }