Search found 1 match

by jfsanchez
Mon May 05, 2014 11:27 am
Forum: English
Topic: Compilation problems
Replies: 1
Views: 3312

Compilation problems

Hello everybody: I'm training to compile this simple program using menuetlibc: This's the main.c file: #include <stdio.h> int main(void) { FILE* a; a = fopen("mio.txt","w"); fprintf(a,"Hello"); fclose(a); return 0; } And here the Makefile: OUTFILE = main OBJS = main.o i...