reddensoft
Banned-Spam
- Oct 7, 2022
- 84
- 9
How can I create an infinite loop in C?
while (1) {//loop forever};this is the best programming work I've ever done in my career, here you go:
Code:#include <stdio.h> int main() { for(;;) //this makes you enter the Matrix printf("Hello world"); return 0; }