fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
  5. C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
  6. Code, Compile, Run and Debug online from anywhere in world.
  7.  
  8. *******************************************************************************/
  9. #include <stdio.h>
  10.  
  11. int main()
  12. {
  13. int i;
  14.  
  15. for(i=0;i<10; i++) {
  16. printf("Hellow World\n");
  17. }
  18. }
  19.  
Success #stdin #stdout 0s 5380KB
stdin
45
stdout
Hellow World
Hellow World
Hellow World
Hellow World
Hellow World
Hellow World
Hellow World
Hellow World
Hellow World
Hellow World