quote:
i guess i couldn't compile b/c i didn't put a '.c' after. why do you need to do this? i thought file extentions weren't needed in linux
File extensions are meaningless to
Linux itself. However, gcc is an
application that Linux runs. And for some applications, file extensions do matter. However, it is possible to override file extensions in gcc, so you can use other extensions if you'd like to do that. The way to compile something with gcc would be to enter:
That will compile a simple, one file, program, add debug symbols, turn on all warnings, and make an executable called "hello" (Linux executables seldom have extensions such as *.exe, although you can add them if desired.)
quote:
never heard of ncurses
NCurses is a basic graphical output. It preceeded X, and is used for applications such as Vi and EMACS without X support. NCurses doesn't allow for anything really fancy beyond drawing text on the screen.
_______________________________________
Live Free or Die: Linux
Their fundamental design flaws are completely concealed by their superficial design flaws.