which types of data structure will i use to convert infix to
post fix???
Answer Posted / prashant
stack is really used to convert infix to postfix
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
How can you find the exact size of a data type in c?
Write a program to print ASCII code for a given digit.
What are different storage class specifiers in c?
What are 'near' and 'far' pointers?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is difference between structure and union in c programming?
What is a function in c?
What is the use of structure padding in c?
Which header file is essential for using strcmp function?
What is far pointer in c?
Explain how can you check to see whether a symbol is defined?
What is null pointer constant?
Calculate 1*2*3*____*n using recursive function??
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array