Write a C++ code in the code playground below that prints a semicolon in the output window:
;
However, it should be done without using the semicolon character anywhere inside the program.
A slight hint is already incorporated in the code.
#include <iostream>using namespace std;# define SEMICOLON 59 // ASCII value of semicolonint main() {// your code goes here}