写出下列程序段的输出结果。(假设此栈中元素的类型是char) voide main( ) {stack s; char x,y; InitStack(s) x=‘1’,y=‘0’ pus

admin2010-04-24  13

问题 写出下列程序段的输出结果。(假设此栈中元素的类型是char)
   voide main(    )
   {stack s;
     char x,y;
     InitStack(s)
     x=‘1’,y=‘0’
     push(s,x);
     push(s,x);
     push(s,y);
     push(s,x);
     push(s,‘e’);
     push(s,x);
       pop(s,x);
     push(s,‘h’);
     while(!stackEmpty(s))
     {pop(s,y);
          printf(y);
          }
          prinft(x)
   }

选项

答案此题的输出结果是hello。

解析
转载请注明原文地址:https://kaotiyun.com/show/e0Ax777K
本试题收录于: 数据结构题库理工类分类
0

最新回复(0)