#include int main() { using namespace std; int i,OctNum,DecNum = 0,arr[20]; cout<<"Octal Number to Decimal Number converter."<< endl<>OctNum; for(i=0; OctNum>0; i++) //Save the individual digits of the Octal number to the array. { arr[i] = OctNum % 10; OctNum = OctNum / 10; } cout<