how do you know a langauge?
how do you know a langauge?
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?
- Pype.Clicker
- 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?
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.
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?
then i guess i have good knowledge, if you dont count stupid errors liek forgotten semi-colons
Re:how do you know a langauge?
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...)
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?
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?
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++.