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