Convert the following expression to postfix and prefix
(A+B) * (D-C)
Answer Posted / revathy
PREFIX : *+AB-DC
POSTFI : AB+DC-*
| Is This Answer Correct ? | 19 Yes | 0 No |
Post New Answer View All Answers
Which is better between malloc and calloc?
Write a program to know whether the input number is an armstrong number.
Is c compiled or interpreted?
What is a lvalue
What are different storage class specifiers in c?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is the purpose of macro in C language?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
how to count no of words,characters,lines in a paragraph.
explain what is a newline escape sequence?
What are the modifiers available in c programming language?
what is the structure pointer?
Explain the advantages of using macro in c language?
What is sizeof return in c?