I
Immortal Nephi
I look at several function names. Some programmers prefer to
capitalize first letter of the function name in either class or
struct. Some others prefer not to capitalize on any global functions.
Which preference do programmer choose to name function?
For example
class CRect
{
public:
CRect() {}
~CRect() {}
void CopyRect() {}
void DrawRect() {}
};
// global
void copyRect() {}
void drawRect() {}
capitalize first letter of the function name in either class or
struct. Some others prefer not to capitalize on any global functions.
Which preference do programmer choose to name function?
For example
class CRect
{
public:
CRect() {}
~CRect() {}
void CopyRect() {}
void DrawRect() {}
};
// global
void copyRect() {}
void drawRect() {}