/**** Given an input integer n, the program prints a number triangle of the form: 1 1 2 1 2 3 1 2 3 4 ....... 1 2 3 4 . . . . n ***************/ #include using namespace std; void pr(int); int main(){ int n; cout<< "Enter an int\n"; cin>>n; pr(n); cout<