fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int numero = 1;
  5. int resultado = 0;
  6. while (numero < 65) resultado += numero++;
  7. printf("%d\n", resultado);
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/276505/101
Success #stdin #stdout 0s 4252KB
stdin
Standard input is empty
stdout
2080