This document describes a program to convert infix expressions to postfix expressions in C. It includes an aim to design and implement a program to support parenthesized and non-parenthesized infix expressions with various operators. An algorithm is provided with 4 steps: start, read the infix expression, convert to postfix expression, stop. The C program code implements functions to assign precedence values to operators and operands, a stack to perform the conversion, and takes user input to display the infix and postfix expressions.