fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int b;
  5. for (;;) { // Repeat forever
  6. int numRead = scanf("%d",&b);
  7. if (numRead == 1) {
  8. break;
  9. }
  10. printf("You did not enter a number\n");
  11. scanf("%*s");
  12. }
  13. printf("b=%d\n", b);
  14. }
  15.  
Success #stdin #stdout 0s 2252KB
stdin
hello
world
123
stdout
You did not enter a number
You did not enter a number
b=123