Posts

Showing posts from May 22, 2013

Char Array Calculation

Write a C++ program which will accept an expression as input and performs the operation based on operators and operands. Sample input:  c = a * 3 + b / 2 (white space is not allowed)  Hints: Char Array / String Array will be required to perform this operation.