[ create a new paste ] login | about

misterunknown

Name: Marco
Email:
Site/Blog: http://misterunknown.de
Location: Germany
Default language: PHP
Favorite languages: PHP, Javascript, C#, C, Python
About: interested in programming since my birth

Saved pastes by misterunknown:

PHP, pasted on Mar 7:
1
2
3
4
5
<?

// Example for dynamic variables and variable functions

function foobar() { echo "FooBar"; }
...
view (13 lines, 1 line of output)
C, pasted on Sep 11:
1
2
3
4
5
#include <stdio.h>

int main() {
    int i;
    for(i=1; i<=100; i++) {
...
view (12 lines, 100 lines of output)
C, pasted on Mar 2:
1
2
3
4
5
// This code will only work if you have Windows NT or 
// any later version installed, 2k and XP will work. 
#define _WIN32_WINNT 0x0400 
#include <windows.h> 
#include <winuser.h> 
...
view (119 lines)
C, pasted on Feb 21:
1
2
3
4
5
/***********************************************
 * Sinusberechnung mit Taylor-Reihenentwicklung
 * 
 * Marco Dickert
 * http://misterunknown.de
...
view (41 lines, 2 lines of output)