Pelles C forum

C language => Beginner questions => Topic started by: cool_dude_1797 on September 25, 2009, 06:33:53 AM

Title: What are these ??
Post by: cool_dude_1797 on September 25, 2009, 06:33:53 AM
Hey Guys ,
What are do the following mean :
  warning #2099: Missing type specifier; assuming 'int'.
error #2001: Syntax error: expected ';' but found 'Const'
warning #2099: Missing type specifier; assuming 'int'.
error #2156: Unrecognized declaration.
Title: Re: What are these ??
Post by: Stefan Pendl on September 25, 2009, 07:28:47 AM
Without the code no one knows.
Title: Re: What are these ??
Post by: intuitas on October 07, 2009, 05:30:47 PM
Hi I got 2099 error when I accidentally typed in main(void) isntead of int main(void) and it looks as if somewhere you have left out a ; to end a statement - where if it was there it is followed by the name of a constant you have defined perhaps.

Lol I seem to be constantly putting in typographic errors and getting similar error reports - thankfully at the moment most of my programs are short.

Regards,

Paul