I am trying to print my output to a file but its not creating the file. I can print to the screen so i know everything is working correctly.
Here is my program..
%{
#include <stdio.h>
#include <stdlib.h>
%}
%%
fd {fprintf(yyout,"%s\n", yytext);}
[0-9]+[a-z]+[0-9]+ {fprintf(yyout,"%s\n", yytext);}
[\r\t\n]+ {}
bk {printf("Keyword: %s\n", yytext);}
setc {printf("Keyword: %s\n", yytext);}
[-+]?[0-9]+ {printf("Number: %s\n", yytext);}
. {printf("%s\n", yytext);} //this will pick up everything else
%%
main( int argc,char** argv)
{
if(argc > 1) {
FILE *file;
file = fopen(argv[1], "r");
if(!file) {
fprintf(stderr, "Could not open %s \n", argv[1]);
exit(1);
}
yyin = file;
yyout = fopen("out.txt", "w");
}
yylex();
fclose(yyin);
fclose(yyout);
}
I get no errors but i dont get an output file!!!
Whats wrong?
fopencall succeeds; why didn't you check the second one? – Keith Thompson Jan 28 '12 at 5:25