Questions: 1 835

Answers by our Experts: 1 539

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Write a c code only using array and for loop to find similar number among given numbers.?
how many numbers:7
give the numbers:2532655
mode:5
number of time present:3
Problem

Write a program that changes an infix expression to a postfix expression according to the following specifications.

1. The infix expression to be converted is in the input file in the format of one character per line, with a maximum of 50 lines in the file. For example, (3+2)*5 would be in the form:
(
3
+
2
)
*
5
2. The input file contains only one infix expression. There are no blank lines.

3. The program will only be designed to handle the binary operators +, -, *, /.

4. The operands will be one digit numerals.

5. The operators * and / have the highest priority. The operators + and - have the lowest priority. Operators at the same precedence level associate from left to right. Parentheses act as grouping symbols that over-ride the operator priorities.

6. The output file will have the postfix expression all on one line.

7. The input will be an expression with valid syntax.

Sample Input
(
3
+
2
)
*
5

Sample Output
32+5*
What should i do if i want to add 10 years to the present date and display it in a textbox2 where i have present date in textbox1. pls Reply.
Thnx in advance!!
hi, i'm using visual studio's 2010 and C#. i'm currently writing a program for a company but i cannot get past one part.. i have multiple Rich Text Box's on my screen, along with pictures in picture box's. I need to get the output of the Rich Text Box's into a PDF or some sort of file, along with the pictures for printing. i cannot have one rich text box and output that, as there are different parts on the documents. it also needs to be at the highest quality.

Any advice/support will be appriciated.

Thank you.

Walid Hamoudan
Write a GUI application which allows the user to enter a name, password and phone number. When they click the Save button, the three fields are appended to a text file in a single line, separated by commas. The application should handle 5 records. Use it to add the 5 records to the text file.
I need help using arrays with a switch statement in them. I need to use a one dimensional array of type bool to represent a seating chart of 1-10. (1-5 = a ) (6-10 = b )
Write a program to calculate and display your average and grade. Allow the user to enter five
scores. After values are entered, and the average calculated, test the result to determine whether
an A, B, C, D, D, F should be recorded. The scoring rubric is as follows: A- 90 – 100; B- 80-89;
C- 70-79; D- 60-69; F < 60. Use methods.
Hi,
I have a homework to do in C Sharp. My teacher want us to replace a string x by a string y in a string p WITHOUT using the System.Replace thing. Please help me and know that we didnt learn lot. Help me using very basic method. Thnxxxxxx
want some help regarding my project in c language using mainly pointers & arrays about STUDENT INFORMATIONS it shuld include their names, their parents name, their roll no., corse sode , section, and their attendence...... plz if posssible give examples with some students..... so i could edit it later time with my claz mates name.......... or i wont be knowing where to edit
please anyone can create this program........
Write a method that finds the average of a set of numbers passed to it as params parameter.Also write code to print the above average from the invoking method using an out parameter.
LATEST TUTORIALS
APPROVED BY CLIENTS