Gente: tengo un archivo en c, que al compilarlo no me tira ningun error, pero al intentar ejecutarlo me dice sintax error
Mi codigo es el siguiente:
{
int main (int argc, char *args[]) {
int c;
printf("Procesando Liquidacion");
/* skip white space */
while ((c = argc ) == ' ' || 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;
}}
Alguien sabe que es lo que estoy haciendo mal? Espero ayudaaaaaaa