el while no esta de mas ?? asi igual funciona,..
Código PHP:
#include <stdio.h>
#include <conio.h>
main()
{
int vector[10]={3, 7, 14, 2, 9, 1, 0, 4, 6, 1}, i=10, j=1, max=0, min=0;
max = vector[0];
for (i=0; i<10; i++)
{
if (vector[i] >max)
{
max = vector[i];
}
}
// se cumple el for
printf("%i", max);
getch();
}