Hello,
I'm new at Bison, but in C/C++ no and at this time of development and regular expressions i never heard something like this, only the \n
that's used for a new line, but i want to know what is the explanation of \t%.10g
, that in the code is like this:
line: '\n'
| exp '\n' { printf ("\t%.10g\n", $1); }
;
Best Regards.