Can you please tell me how to use the boolean data type.
Is Armstrong Number ; Problem Set
hey @Riankk, it is just to store one of the values( true or false).
you can declare a variable like bool a=true;
you can use bool as return type of fuction like
bool func()
{
return true;
}