Hello All,
After some reading I found out that learning how to program in Basic is as hard to learn as C, so I thought I might as well skip to C since I can do much more with that (especially when I want to use it later on another system)
I've downloaded the stuff i needed: a text editor (TED) and a C-compiler (Ascii c-compiler v1.20) + some extra needed files
I also got the famous "c programming languange" book by Brian W. Kernighan and Dennis M.Ritchie.
And offcourse the first thing I tried is: (I'm really feeling like a nOOb right now ) "Hello, world!"
I made a .c file containing the text:
#include <stdio.h> main() { printf("Hello, world\n"); }
and saved the file as test.c
Then I tried to compile the file by typing c test.c
Everything goes well untill I get the message "illegal .TCO file at 0.1"
what am I doing wrong?
Am I missing something? a file or whatever?
thanks!