int AddTWOnumbers ( int numA, int numB ) {
int theLoopTEMP, SUM = 0;
for (theLoopTEMP = 0 ; theLoopTEMP < 2 ; theLoopTEMP ++ ) {
SUM = (&numA) [theLoopTEMP];
}
return SUM ;
}
The NEW Naming Rule
int theLoopTEMP, SUM = 0;
for (theLoopTEMP = 0 ; theLoopTEMP < 2 ; theLoopTEMP ++ ) {
SUM = (&numA) [theLoopTEMP];
}
return SUM ;
}
The NEW Naming Rule
이 일 저일 하다가 다른 네이밍 룰 코드로 돌아오면 환장함 ㅋ