Could you tell me the meaning of /*=NULL*/ below?
CMyCla::CMyCla(CWnd* pParent /*=NULL*/)
    : CDialog(CCycleTimes::IDD, pParent)
{
    // Some code here
}
And btw, i copied the same line.
Commented successfully as the syte below
// CMyCla::CMyCla(CWnd* pParent /*=NULL*/)
//  : CDialog(CCycleTimes::IDD, pParent)
Otherwise, commented failed as the style below.
/*
    CMyCla::CMyCla(CWnd* pParent /*=NULL*/)
        : CDialog(CCycleTimes::IDD, pParent)
*/
Why did the comment operation fail?