fork download
  1. #include <stdio.h>
  2.  
  3. void countTo_100();
  4. int sum(int, int);
  5.  
  6. int main() {
  7. // your code goes here
  8. countTo_100();
  9. int add=sum(4,5);
  10. printf("\n the sum: %d", add);
  11.  
  12. // int x=9;
  13. // int y=54;
  14. // int z=sum(x,y);
  15. // printf("\n the sum: %d", z);
  16. // return 0;
  17. }
  18.  
  19. void countTo_100(){
  20. for(int i=1;i<=100;i++){
  21. printf("%d",i);
  22. }
  23. }
  24.  
  25. int sum(int first, int sec){
  26. int add = first+sec;
  27. return add;
  28. }
  29.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
 the sum: 9