Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Data File StructureRSS Feeds

Defines and lists types of expressions

Posted By: Bogohardt Fischer     Category: C++ Programming     Views: 3536

This article lists and defines Infix Expression, Suffix Expression, Prefix Expression, Fully Parenthesized Expression.

Infix Expression

Whenever operator is between the operands, then the expression is called infix expression.

Suffix Expression

Whenever the operator is on right side of the operands then the expression is called suffix or postfix or reverse polish expression.

Prefix Expression

Whenever the operator is on left side of the operand then the expression is called prefix or polish expression.

Fully Parenthesized Expression

A pair of parentheses has the same parenthetical level as that of the operator to which it corresponds, i.e., of the operator, which is immediately enclosed by this pair.  Such an expression is called a fully parenthesized expression.

Parenthetical Level

Starting from the innermost parenthesis to the outermost parenthesis, we solve the expression based on the level of parenthesis is called the parenthetical level. [Innermost parenthesis have the highest priority].

  
Share: 


Didn't find what you were looking for? Find more on Defines and lists types of expressions Or get search suggestion and latest updates.

Bogohardt Fischer
Bogohardt Fischer author of Defines and lists types of expressions is from Frankfurt, Germany.
 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!