[ create a new paste ] login | about

EnzoFerber

Name: Enzo
Email:
Site/Blog:
Location: Hell City
Default language: C
Favorite languages: C
About:

Saved pastes by EnzoFerber:

C, pasted on Jan 18:
1
2
3
4
5
#include <stdio.h>
#include <string.h>
#include <unistd.h>

char *buildnum ( int number, int n, char pad )
...
view (22 lines, 2 lines of output)
C, pasted on Dec 23:
1
2
3
4
5
#include <stdio.h>
#include <stdlib.h>

int fat ( int n )
{
...
view (24 lines, 5 lines of output)
C, pasted on Dec 23:
1
2
3
4
5
#include <stdio.h>
#include <stdlib.h>

int fat ( int n )
{
...
view (27 lines, 23 lines of output)
C, pasted on Nov 30:
1
2
3
4
5
void makebin(int d){
char str[9];
register int i;
for ( i = 0; i < 8; i++) str[i] = (d & 0x80 >> i) ? '1' : '0';
str[8] = 0x0;
...
view (9 lines, 1 line of output)
C, pasted on Nov 30:
1
2
3
4
5
main(){

char a = 'A';

printf ("%d\n", a);
...
view (14 lines, 3 lines of output)
C, pasted on Nov 22:
1
2
3
4
5
// bigint.c

/*
 * Enzo Ferber : <enzo@veloxmail.com.br>
 *
...
view (217 lines, 73 lines of output)
C, pasted on Oct 28:
1
2
3
4
5
/*
 * Author: Enzo Ferber
 */

#include <stdio.h>
...
view (23 lines, 20 lines of output)
C, pasted on Jan 1:
1
2
3
4
5
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main ( void )
...
view (19 lines, 2 lines of output)
C, pasted on Jan 1:
1
2
3
4
5
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void swap ( int *a, int *b )
...
view (20 lines, 2 lines of output)
C, pasted on Sep 19:
1
2
3
4
5
// bigint.c

/*
 * Enzo Ferber : <enzo@veloxmail.com.br>
 *
...
view (217 lines, 2 lines of output)
C, pasted on Sep 19:
1
2
3
4
5
/* stat.c */

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
...
view (38 lines, 1 line of output)