Update infix_to_prefix.c

This commit is contained in:
Jibesh10101011 2023-10-08 15:44:40 +05:30 committed by GitHub
parent 901d988fa6
commit f927aebe6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,11 +7,11 @@
* @author [Jibesh Roy](https://github.com/Jibesh10101011)
* @see infix_to_prefix.c
*/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<stdbool.h>
#include<assert.h>
#include<stdio.h> /// for printf(),sizeof() and scanf()
#include<stdlib.h> /// for malloc()
#include<string.h> /// for strlen() and strcmp()
#include<stdbool.h> /// for bool data type
#include<assert.h> /// for assert()
#define sz 1000 //< Maximum size of infix string
#define ln 2000 //< Maximum size of the resultant prefix string
/**