Results 1 to 7 of 7
hi every one
I am a noob .....very very noob infact this is the first time I am using linux
knoppix live cd ...
I kind of like it until ...
- 10-27-2006 #1Just Joined!
- Join Date
- Oct 2006
- Posts
- 6
Linux live cd ( noob help )
hi every one
I am a noob .....very very noob infact this is the first time I am using linux
knoppix live cd ...
I kind of like it until now so I want to learn more ...any tips and tricks will be usefull .....Pointing to a site that has usefull info will be good
the importtant thing that I want to learn what are the Xroot cmds
some of the windows cmd work
I also want to download a c compiler for linux for free
thx for future help
- 10-27-2006 #2I suppose you refer to the shell, good info here http://www.linuxcommand.org/the importtant thing that I want to learn what are the Xroot cmds some of the windows cmd work
gcc is the default c compiler and should be already on knoppix and g++ for c++I also want to download a c compiler for linux for freePut your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 10-28-2006 #3Just Joined!
- Join Date
- Oct 2006
- Posts
- 6
where can I found the compiler
thx for the help
- 10-28-2006 #4just write C/C++ program and execute in terminal through command
Originally Posted by demon.kiler
g++ <file.c>
./a.out
casperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 10-28-2006 #5Just Joined!
- Join Date
- Oct 2006
- Posts
- 6
okay I guess I got that working but
I have a error
my code is this
this code is nothing so I am postin this in this theard ( its not programming question )Code:int main(void) { printf("\n It works"); }
error is
2.c: In function `int main()':
2.c:3: error: `printf' undeclared (first use this function)
2.c:3: error: (Each undeclared identifier is reported only once for each
function it appears in.)
thx for the future help
- 10-28-2006 #6
#include <stdio.h>
use gcc to compile instead of g++Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 10-29-2006 #7Just Joined!
- Join Date
- Oct 2006
- Posts
- 6
yeah now it works thx


Reply With Quote