fix: suggestions from review

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Harsh Karande 2020-10-21 10:17:00 +05:30 committed by GitHub
parent 02845fabcc
commit 5c03b36a12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,8 @@
/**
* @file
* @brief Infix to Postfix 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)
* @see [notes](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm)
*/
// include header files
@ -12,8 +11,8 @@
// globally declared structure
struct Stack
{
char arr[10]; // static array of integers
int tos; // stores index on topmost element in stack
char arr[10]; ///> static array of integers
int tos; ///> stores index on topmost element in stack
};
// function headers