docs: update comments

This commit is contained in:
Harsh Karande 2020-10-21 14:39:08 +05:30
parent 5c03b36a12
commit b2522d2413
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,8 @@
/**
* @file
* @brief [Infix to Postfix](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm) Expression Conversion
* @brief [Infix to
* Postfix](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm)
* Expression Conversion
* @details Convert Infixed expressions to Postfix expression.
* @author [Harsh Karande](https://github.com/harshcut)
*/
@ -8,7 +10,10 @@
// include header files
#include <stdio.h> /// for printf() and scanf()
// globally declared structure
/**
* @brief a globally declared structure with an array and an variable that
* points to the topmost index of the array
*/
struct Stack
{
char arr[10]; ///> static array of integers