[ create a new paste ] login | about

ultramage

Name: ultramage
Email:
Site/Blog:
Location:
Default language: C++
Favorite languages:
About:

Saved pastes by ultramage:

C++, pasted on Mar 7:
1
2
3
4
5
#include <stdio.h>
#include <time.h>
#include <assert.h>
#include <string>
#include <vector>
...
view (56 lines, 5 lines of output)
C++, pasted on Sep 30:
1
2
3
4
5
// windows: cl sockettest.cpp ws2_32.lib /Ox
// freebsd: g++ sockettest.cpp -o sockettest -O3

#ifdef _WIN32
#include <winsock2.h>
...
view (118 lines, 1 comment)