71.
The time complexity of converting a prefix notation to infix notation is . . . . . . . .

72.
What will be the output of the following program?
main()  
{  
   char str[]="hello india";  
   int len = strlen(str);  
   int i;  
 
   for(i=0;i<len;i++)  
        push(str[i]);  // pushes an element into stack
 
   for(i=0;i<len;i++)  
      pop();  //pops an element from the stack
}

Read More Section(Stacks in Data Structures)

Each Section contains maximum 100 MCQs question on Stacks in Data Structures. To get more questions visit other sections.