Un truc comme ca, quoi:
int max(int *ptr,int length)
{
int max;
if (lenght<= 0)
exit(-1); /* quittons le prog */
max = ptr[0];
for(int i=1;i<length;i++)
{
if (ptr[i]>max) max = ptr[i];
}
return max;
}
---------------
There's more than what can be linked! -- Iyashikei Anime Forever! -- AngularJS c'est un framework d'engulé! --