how do you know a langauge?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
elias

how do you know a langauge?

Post 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?
User avatar
Pype.Clicker
Member
Member
Posts: 5964
Joined: Wed Oct 18, 2006 2:31 am
Location: In a galaxy, far, far away
Contact:

Re:how do you know a langauge?

Post 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.
elias

Re:how do you know a langauge?

Post by elias »

then i guess i have good knowledge, if you dont count stupid errors liek forgotten semi-colons
Tom

Re:how do you know a langauge?

Post 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...)
ncsu121978

Re:how do you know a langauge?

Post 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
Tom

Re:how do you know a langauge?

Post 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++.
Post Reply