From 5c03b36a12043101a4a3204bdde877b11cb5e2f1 Mon Sep 17 00:00:00 2001 From: Harsh Karande <66206863+harshcut@users.noreply.github.com> Date: Wed, 21 Oct 2020 10:17:00 +0530 Subject: [PATCH] fix: suggestions from review Co-authored-by: David Leal --- conversions/infix_to_postfix.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/conversions/infix_to_postfix.c b/conversions/infix_to_postfix.c index 8382ae92..366f99ce 100644 --- a/conversions/infix_to_postfix.c +++ b/conversions/infix_to_postfix.c @@ -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