fork download
  1.  
  2. #include "stdafx.h"
  3. #include <stdio.h>
  4.  
  5. int main(void) {
  6. int a, i = 0;
  7. scanf_s("%d", &a);
  8. do {
  9. a += 3; i++;
  10. printf("%d ", a);
  11. a += 2; i++;
  12. printf("%d ", a);
  13. } while (i < 6);
  14. // your code goes here
  15. return 0;
  16. }
  17.  
  18.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:2:10: fatal error: stdafx.h: No such file or directory
 #include "stdafx.h"
          ^~~~~~~~~~
compilation terminated.
stdout
Standard output is empty