Mail Archives: djgpp/1997/10/07/07:16:16
Hugh Barrett wrote:
>
> I have a program - c:\hugh's~1\tutori~1\c\firstex.c. Here it is:
>
> #include <stdio.h>
>
> int main()
> {
> int index;
>
> for (index = 0 ; index < 7 ; index = index + 1)
for(index=0;index < 7; index++) //No vital but, does the same thing.
> printf("First example program.");
>
> return 0;
exit(0); //Don't ask me why, may be someone else can fill us in.
> }
>
> When I compile it it says:
>
> Compiling: c:\hugh's~1\tutori~1\c\firsex.c
> Unmatched quote error
> There were some errors.
>
> If this is an obvious question, I'm sorry, but I'm dumb ok?
>
> Thanks a lot
> --
> -cya---------------------------------------------
> Hugh Barrett
> realzucchini AT hotmail DOT com
> http://www.geocities.com/TelevisionCity/Set/2254
- Raw text -