|
tjw
|
|
codepad
|
|
|
tjw
|
Saved pastes by tjw:
int main()
{
unsigned int x = (('a' & 0xFF) << 24) + (('p' & 0xFF) << 16) + (('x' & 0xFF) << 8) + (('e' & 0xFF));
const char sigma[16] = {'e','x','p','a','n','d',' ','3','2','-','b','y','t','e',' ','k'};
|
| view (17 lines, 1 line of output) |
int main()
{
unsigned int x = (('a' & 0xFF) << 24) + (('p' & 0xFF) << 16) + (('x' & 0xFF) << 8) + (('e' & 0xFF));
const char sigma[16] = {'e','x','p','a','n','d',' ','3','2','-','b','y','t','e',' ','k'};
|
| view (10 lines, 1 line of output) |
int main()
{
unsigned int x = (('e' & 0xFF) << 24) + (('x' & 0xFF) << 16) + (('p' & 0xFF) << 8) + (('a' & 0xFF));
const char sigma[16] = {'e','x','p','a','n','d',' ','3','2','-','b','y','t','e',' ','k'};
|
| view (10 lines, 1 line of output) |
// MSVC 8.0 Memory leak detection
// http://msdn.microsoft.com/en-us/library/e5ewb1h3(VS.80).aspx
// http://msdn.microsoft.com/en-us/library/1y71x448.aspx
#define _CRTDBG_MAP_ALLOC
|
| view (16 lines) |
while true do
99.times do |i|
puts "#{99-i} bottle#{99-i>1 ? 's' : ''} of beer on the wall, #{99-i} bottle#{99-i>1 ? 's' : ''} of beer!"
puts " Take one down pass it around, #{98-i} bottle#{98-i==1 ? '' : 's'} of beer on the wall."
puts ""
|
| view (9 lines, 1672 lines of output) |