Convert the following expression to postfix and prefix
(A+B) * (D-C)
Answer Posted / gaurav
Prefix :*+AB-DC
Postfix:AB+DC-*
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is malloc calloc and realloc in c?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
In which header file is the null macro defined?
What are the types of pointers?
What is merge sort in c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
How we can insert comments in a c program?
What is the value of c?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
How arrays can be passed to a user defined function
What is the best way to comment out a section of code that contains comments?
What does c in a circle mean?
List out few of the applications that make use of Multilinked Structures?
Can we declare a function inside a function in c?
Explain how do you generate random numbers in c?