Exemple #1
0
        public char[] othConvert()
        {
            this.enterOctal();

            Binary converter = new Binary(this.oChain);

            converter.otbConvert();
            this.hChain = converter.bthConvert();

            this.hChain[8] = '\0';

            return this.hChain;
        }