I Need Help

I want to mess up with a friend... is there anyway to make the loop run without need to close the first notepad window generated
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  // ConsoleApplication11.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>


int main() {
	using namespace std;
	int i = 1;
	int b = 1;
	 
	while (1) {
		i = i + 1;
		
		system("notepad.exe");
	
			
		
		
	}
	return 0;
}
closed account (1vD3vCM9)
what do you mean by 'mess up with a friend'? you want us to help you make an annoying .exe file?
get out of this forum, its for serious people, we won't help you make things that can annoy people.
Last edited on
Topic archived. No new replies allowed.