Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- this works
- #include <stdio.h>
- int main (){
- bool quit= false;
- int x =0;
- while(!quit){
- if(x<3000000){
- printf("something");
- x++;
- }
- }
- return 0;
- }
- this doesnt
- #include <stdio.h>
- int main (){
- bool quit= false;
- int x =0;
- while(!quit){
- if(x<10){
- printf("something");
- x++;
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment