Skip to content

Instantly share code, notes, and snippets.

View fcannizzaro's full-sized avatar

Francesco Saverio Cannizzaro fcannizzaro

  • Palermo , Italy
  • 06:31 (UTC +02:00)
View GitHub Profile
@fcannizzaro
fcannizzaro / infix_expr.c
Last active August 29, 2015 14:21
Infix expression
#include <stdio.h>
#include <math.h>
#include <stdbool.h>
#include "base.h"
main(){
_struct * list = NULL;
FILE * file = fopen("post.ms", "r");
char value[10] , * pt;