change to postfix a/(b+c*d-e)

Answer Posted / bhavitha

a/bc+de-*

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a program?

776


What are the various types of control structures in programming?

703


Describe wild pointers in c?

737


Why do we use c for the speed of light?

701


How many types of operators are there in c?

711






I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

659


in iso what are the common technological language?

1721


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

3955


What is character set?

779


Explain what are its uses in c programming?

675


What is const and volatile in c?

672


Can include files be nested?

719


How can I get back to the interactive keyboard if stdin is redirected?

773


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

712


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

2159