Search found 1 match

by hoooh
Thu Aug 17, 2006 8:57 pm
Forum: Volume 1 (100-199)
Topic: 120 - Stacks of Flapjacks
Replies: 118
Views: 30700

120 Invalid reference memory help me!!!!

Help me

why?


# include <stdio.h>
# include <stdlib.h>


int comparar(const void *a,const void *b)
{
if(*(int *)a<*(int *)b)
return(1);

if(*(int *)a>*(int *)b)
return(-1);

return(0);
}

void Voltear(int pank[100],int pos,int cant)
{
int i;
int aux;
int t;

printf("%d ",(cant-pos ...

Go to advanced search