Need help - with programing in C
Hey guys,I need some help. I just want to know, how do you perform method calling in C? I have only a little experience with JAVA.
View ArticleRe: Need help - with programing in C
It's pretty much the same way. Except that you can use pointers and references as well. int m_iValue; int m_aiArray[ 5 ]; void SetValue(int iValue) { m_iValue = x; } int GetValue() { return m_ivalue;...
View ArticleRe: Need help - with programing in C
Hmmm, OK. But, you know, we are now working with some "Function Prototypes". I have no clue what that is. Could you explain please? And what is the difference between function declaration and function...
View ArticleRe: Need help - with programing in C
You've probably been shown this by now if it was an assignment for last week or something, but I'll tell you in case you havn't. Declarations are where you just state that the function exists, but not...
View ArticleRe: Need help - with programing in C
Ha, reminds me of YaBasic, the PS2 game dev kit provided with the first demo disc on the PS2. I reprogrammed Tetris on that sucker. :P
View Article