#include <stdio.h>

void recurse()
{
  static i=0;
  printf("%d This is i\n",i++);


  recurse(); /*Function calls itself*/

}

int main()
{
  recurse(); /*Sets off the recursion*/
}
