mplement a function which convert the given boolean value into its string representation.
#include <stdbool.h> const char *boolean_to_string(bool b){ return (b == true ? "true" : "false"); }