fork download
  1. #define NUMBER_OF_STUDENTS 5
  2. int main()
  3. {
  4. unsigned int i;
  5. for (i = 1; i <= NUMBER_OF_STUDENTS; i++)
  6. printf("Hello, student %d\n", i);
  7. return 0;
  8. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Hello, student 1
Hello, student 2
Hello, student 3
Hello, student 4
Hello, student 5