Hola! lo que quiero hacer es que tome los argumentos que le estoy pasando al llamar a la funcion ( no que me los pida por teclado)
Estuve haciendo los cambios que me decis pero tampoco me anda
{ int main (int argc, char *argv[]) {
int c;
printf("Procesando Liquidacion");
/* skip white space */
while ((c = argv[] ) == ' ' || c == '\t')
;
/* process numbers */
if (c == '.' || isdigit (c))
{
ungetc (c, stdin);
scanf ("%lf", &yylval);
return NUM;
}
/* return end-of-file */
if (c == EOF) /* a CNTRL-D from keyboard */
return 0;
/* return single chars */
return c;
}}
Se te ocurre otra cosa??
Graciasssssssssss