MAIN = memory_leak.c
FLAG = 				# include<math.h>
run : a.out
	./a.out
	@echo \

a.out : $(MAIN)
	gcc $(MAIN) $(FLAG) -o a.out

clean :
	rm -f *.out
