fork download
  1. #include <stdio.h>
  2.  
  3. int ast(double n){
  4. if(n>2){
  5. printf("*");
  6. ast(n/2);
  7. }
  8. }
  9. int main(void) {
  10. ast(11);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
***