#include using namespace std ; void recursiveFunction(int noOfTimesToRun) { if ( noOfTimesToRun == 0 ) return ; cout << "Inside the recursive function." << endl ; noOfTimesToRun-- ; recursiveFunction(noOfTimesToRun) ; } int main() { recursiveFunction(2) ; }