main()
{
int s=0;
while(a && b && c)
{
s++;
a--;
b--;
c--;
}
printf("%d",s);
}
i know that here a,b,c are undeclared, but beside that i can't find the problem.
so anyone can help me out here.
thanks