I am trying to understand memory part in C++. I am trying to release memory after I generate the output by using the code below.
Question:
Is it necessary to release memory by using if-statement?
Code:
int main(){
    char *pc;
    int *pi;
    pc = new char('a');
    pi = new int(8);
    cout << *pc << endl;
    cout << *pi << endl;
    //What's the purpose for doing if(pc) and if (pi) below?
    if(pc){
        delete pc;
    }
    if(pi){
        delete pi;
    }
return 0;
}
Could I be able to do in this way? int main(){ char *pc; int *pi;
    pc = new char('a');
    pi = new int(8);
    cout << *pc << endl;
    cout << *pi << endl;
    delete pc;
    delete pi;
return 0;
}
 
     
     
     
    