精选优质文档-倾情为你奉上/ 十进制转换为八进制.cpp : Defines the entry point for the console application.#includeiostream#includestdlib.h#includestdio.husing namespace std;#define Stack_Init_Size 100#define STACKINCREMENT 10#define overflow -2#define ERROR 0#define OK 1typedef structint *base;int *top;int stacksize;SqStack;typedef int Status;Status InitStack(SqStack &S)S.base=(int *)malloc(Stack_Init_Size* sizeof(int);if(!S.base) exit(overflow);S.top=S.