1 2 3 4
.section .data
output:
.asciz "Max = %d \n"
...
C On Find the max
by Maciej Piechotka,
July 03, 2008 20:41
1 2 3 4
#include <math.h> #define BASE 2 ...
C On Quanti bit per rappresentar...
by Eineki,
February 20, 2008 22:35
it:Il numero di cifre neces...
1 2 3 4
typedef struct list list; typedef struct list_entry list_entry; ...
C On Character buffer manipulati...
by chrome,
January 11, 2008 23:34
What a horribly contrived "...
C On Character buffer manipulati...
by Steve,
December 19, 2007 15:38
buffer[i] = buffer[i] << 2 ...
1 2 3 4
const char *fgetLine( FILE* pFile ) { static size_t bufSize = 128; ...
1 2 3 4
//////////// void push(stk *ptr, int *x) { //pushs a value to the top of the stack ...
1 2 3 4
#include <stdio.h> #include <stdlib.h> //for the system() and exit() functions ...
C On Character buffer manipulati...
by Steve,
November 05, 2007 20:54
#define mBufferLen(buf) (si...
C On Character buffer manipulati...
by jaredgrubb,
October 29, 2007 15:44
A comment on Andy Lester's ...
C On Character buffer manipulati...
by engtech,
October 17, 2007 01:51
if kSpace was supposed to b...
1 2 3 4
#define kSpace 0x20 char buf[] = {0x42, 0x73, 0x75, 0x27, 0x13, 0x1C, 0x68, 0x1B, 0x64}; ...
C On Character buffer manipulati...
by engtech,
October 17, 2007 01:50
Step #1: hex vs dec... what...
C On Character buffer manipulati...
by Nathan Sanders,
October 15, 2007 01:52
Look at the definition of k...
C On Character buffer manipulati...
by Andy Lester,
October 14, 2007 17:00
I suspect you don't really ...
1
void **node = malloc(sizeof(void *) * 3); /* A new node */
C On Misbehaving global pointer
by jonathantan86,
October 13, 2007 23:26
Because L now points to a l...


May be something like that:...