expected identifier before ‘(’

Posted by gcc on Stack Overflow See other posts from Stack Overflow or by gcc
Published on 2010-06-05T07:22:57Z Indexed on 2010/06/05 7:32 UTC
Read the original article Hit count: 107

Filed under:
  stored_name_t scan_construct_struct(void)
   {        stored_name_t stn;   int i=0;     
   scanf("%c %lf %lf",&(stn.name)
                    ,&(stn.(the_lower_limit))
                    ,&(stn.(the_upper_limit)));

   for(i=0; (scanf("%s", stn.(numbers[i])))!=0; ++i)
            ;              

  return stn;
 }


 dene.c:37: error: expected identifier before ‘(’ token
 and 
   there is an one more error but I cannot see 

© Stack Overflow or respective owner

Related posts about c