Output of the recursive program May 6, 2014 by puzzler 1 Comment what will be the output of this program void print (int n) { if (n>0) { printf(“hello”); print(n-1); } printf(“world”); } [Read more…]