0
كيف بقدر خلي ال cout ينعاد الى المالانهاية
2 Answers
+ 3
If I understand your question Mahmoud Diab
#include <iostream>
using namespace std;
int main() {
bool x = true;
int y;
while (x == true){
cout << y++ << " ";
}
return 0;
}
On normal machines in a normal environment this code would run infinitely
+ 1
Hi