which types of data structure will i use to convert infix to
post fix???
Answers were Sorted based on User's Feedback
Answer / abhishek munde
To convert the infix to postfix, STACK datastructure is
used. some may think about tree but by we only denote the
expression actual conversion is done through STACK.
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / prashant
stack is really used to convert infix to postfix
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / khaja
stack only bcoz in memory the operations are done in stacks only
| Is This Answer Correct ? | 2 Yes | 1 No |
What does 3 mean in texting?
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
what are two categories of clint-server application development ?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
How do we declare variables in c?
How can I access an I o board directly?
What do you understand by normalization of pointers?
Write a program to print fibonacci series without using recursion?
Can main () be called recursively?