xxxxxxxxxx
gcc your_app.cpp -o your_app.exe -lstdc++
You need to add the -lstdc++ part if you are seeing linker errors. These errors occur when the linker is unable to find definitions for symbols that are referenced in your code.
xxxxxxxxxx
visual studio or Open CMD and type g++ "filename. cpp" -o "executable name".
xxxxxxxxxx
#include <iostream>
int main() {
std::cout << "•••You have 0 day subscriprion•••";
return 0;
}