ポインター

Style

🚨 NULL との比較は行わない

☀
if (!ptr) {

}
☔
if (ptr == NULL) {

}