gcc Core Dump

Max Bowsher maxb@ukf.net
Thu Mar 6 12:38:00 GMT 2003


Klaus.Moschner@gmx.de wrote:
> Hi,
> 
> I'm a newbie in programming under Cygwin, and I have a very basic
> problem with gcc:
> Any help is appreciated.

Wrong mailing list. Please re-read http://cygwin.com/lists.html.

Your sample code below works for me.

Do NOT reply to cygwin-apps@cygwin.com .

Start a new thread on cygwin@cygwin.com .

Max.


> This code compiles and runs without any problems under Dev++
> 
> This is the output when I compile and run:
> $ gcc -Wall prog3.c -o prog3
> 
> $ ./prog3.exe
> Hello World
> Segmentation fault (core dumped)
> 
> $
> 
> This is the source code:
> 
> /* Include Files */
> #include <stdio.h>
> #include <stdlib.h>
> 
> /* Function Declarations */
> void PrintHW();
> 
> int main()
> {
>     char quit;
>     printf("Hello World\n");
>     PrintHW();    /* Prints Hello Function */
>     printf("Hello World\n");
>     quit = '\0';
> 
>     return 0;
> }
> 
> 
> void PrintHW()
> {
>     printf("Hello Function\n");
> }



More information about the Cygwin-apps mailing list