Date: Tue, 14 Apr 1998 15:50:13 +0300 (IDT) From: Eli Zaretskii To: Tilo Johannsen cc: djgpp AT delorie DOT com Subject: Re: newbie needs help In-Reply-To: <6gutgb$73u$1@news02.btx.dtag.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 14 Apr 1998, Tilo Johannsen wrote: > erstes.c:1: undefined or invalid # directive It is indeed invalid, see below. > erstes.c:3: warning: return-type defaults to `int` You should say "int main". > erstes.c: In function `main`: > erstes.c:4: warning: implicit declaration of function `printf` This is because it didn't include , due to the typo. > erstes.c:5: warning: control reaches end of non-void function This is because `main' defaults to int, but you don't have any `return' statement in it. > #inckude ^^^^^^^ Should be include, not inckude. > main() Should be "int main". > I am still waiting to compile my first exe......who can help my. It is much more efficient to get some book about C programming and study it. This is not the right place to ask questions about basic C syntax.