Tema: Sintax error
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/07/2006, 10:08
laulaurys
 
Fecha de Ingreso: junio-2005
Mensajes: 337
Antigüedad: 19 años, 7 meses
Puntos: 1
Sintax error

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