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 are the rules for the identifier?
What is pass by reference in functions?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is omp_num_threads?
Compare array data type to pointer data type
How can you tell whether a program was compiled using c versus c++?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How do you sort filenames in a directory?
What is the maximum no. of arguments that can be given in a command line in C.?
What is NULL pointer?
How a string is stored in c?
Explain the difference between getch() and getche() in c?
Write a C program to count the number of email on text
I came across some code that puts a (void) cast before each call to printf. Why?
By using C language input a date into it and if it is right?