Code has been added to clipboard!

C++ Infinite Loop

Example
using namespace std;

int main() {
    int temp = 0;
    while (temp != 1) {
        /*
        the code added here will loop forever
        */
    }
}