COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
a.cpp
Go to the documentation of this file.
1int main(){
2 char * q1, *q2;
3 *q1 = 'c';
4 *q2 = 'd';
5 delete q1;
6 delete q2;
7}
int main()
Definition a.cpp:1