:: Re: [DNG] Learning C
Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: o1bigtenor
Ημερομηνία:  
Υ/ο: dng
Αντικείμενο: Re: [DNG] Learning C
On Mon, Sep 23, 2024 at 9:49 PM Radhitya <radhitya@???> wrote:

> On Mon, 23 Sep 2024 21:05:02 -0500
> o1bigtenor via Dng <dng@???> wrote:
>
> > except whether I type in the code or copy and paste it - - - - well
> > the compiler pukes out
> >
> > >$ gcc -Wall -o bicycles.c
> > >gcc: fatal error: no input files
> > >compilation terminated.
>
> I don't see any problem in the code. But the error means you did not
> add your input file.
>
> The right answer is:
>
> $ gcc input-file.c -o output-file
>
> This also works - - -thank you!