Title: Flow Chart for Finding the Greatest Common Divisor
int main(void)
{
int u, v, temp;
printf("Enter two non-negative numbers: ");
scanf("%d %d", &u, &v);
while(v != 0)
{
temp = u % v;
u = v;
v = temp;
}
printf("Greatest Common Divisor is %d", u);
return 0;
}