Page 1 of 1
how do you know a langauge?
Posted: Fri Nov 15, 2002 8:30 am
by elias
more specifically, hwo do you knwo if you know a langauge? i always hear stuff about dont write an OS unless you really know a langauge, but how do you know if you do? up until i can to this baord, i thought i knew c, but now im not sure. can someone explain to me how you know if you know a langauge?
Re:how do you know a langauge?
Posted: Fri Nov 15, 2002 8:34 am
by Pype.Clicker
fair knowledge : you're not surprised when the compiler complains about some error.
good-knowledge : you're able to write a program that will compile at the first attemp (say, the second and we're covered)
guru-knowledge : by just looking at someone else's code, you can guess what's wrong with it.
Re:how do you know a langauge?
Posted: Fri Nov 15, 2002 8:40 am
by elias
then i guess i have good knowledge, if you dont count stupid errors liek forgotten semi-colons
Re:how do you know a langauge?
Posted: Fri Nov 15, 2002 9:38 am
by Tom
Well do you under stand this?:
void msg( char* msg )
{
char curchar;
curchar = *msg;
while ( curchar != '\0' )
{
putch( curchar );
msg++;
curchar = *msg;
}
}//( didn't test if that has bugs...)
Re:how do you know a langauge?
Posted: Fri Nov 15, 2002 10:34 am
by ncsu121978
i hope that is not the test to see if you are a guru...........because that was way to easy to figure out
Re:how do you know a langauge?
Posted: Fri Nov 15, 2002 3:17 pm
by Tom
No...that is not hard...I know..but if you don't even know what that does than you need to know more C/C++.