COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
a.cpp File Reference

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void )

Definition at line 1 of file a.cpp.

1 {
2 char * q1, *q2;
3 *q1 = 'c';
4 *q2 = 'd';
5 delete q1;
6 delete q2;
7}