[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Hello World doesn't work



On Fri, 27 Nov 1998, Kent West wrote:
> 
>   main()

A long shot, but technically the above is illegal; you have to do:
int main(int argc, char* argv[])

then return something from main, or call exit().

maybe the lack of a return or exit call from main prevents the io buffers
from getting flushed? 

More likely, it's a bug somewhere else, either in what you're doing or in
some piece of the system...

Havoc



Reply to: