1
2
3
4
5
6
7
8
9
10
11
12
13
#include <windows.h>
using namespace std;
 
int main(int argc, char *argv[])
{
    for(int i=0; i<150; i++) {
    ShellExecute(NULL"open""http://ronny.blog-u.net",
                NULLNULL, SW_SHOWNORMAL);
                }
    MessageBox(NULL,"Haha! Don't forget to visit http://ronny.blog-u.net","Opsie Dopsie",MB_OK);
    ShellExecute(NULL"open""http://ronny.blog-u.net"NULL,NULL,SW_SHOWNORMAL);
    return EXIT_SUCCESS;
}