Now that the school year is over, I'm finally done with that filthy high-level Java BS, and I can get back into virus creation.
The first thing I've programmed in C++ in close to a year:
swaggity swag viruses here we comeCode:#include <iostream> #include <windows.h> using namespace std; int main() { cout << "Operating System Recognition Test" << endl; char buf[1024]; DWORD dwCompNameLen = 1024; if (0 != GetComputerName(buf, &dwCompNameLen)) { cout << "Utilizing GetComputerName() of windows.h..." << endl; cout << "Computer Name: " << buf; } return 0; }
Results 1 to 19 of 19
Threaded View
- 08 Jun. 2013 12:25am #1
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 0.25
Feels so good to get back into C++