fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. int a = 0;
  6. for (int i = 1; i <= 50; i++)
  7. a = i;
  8.  
  9. printf("%d", a);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
50