Actually I came across a problem where I want to print the return value of a function but it is true or false. SO, how can I point out a bool.
For example, %c = for char %i = for integer but what is for bool type
bool s = valid_triangle(x, y, z);
printf("%u\n",s);
return 0;
}
Thank you in advance!