알고리즘 5 - Convert a Boolean to a String

jabae·2021년 10월 4일
0

알고리즘

목록 보기
5/97

Q.

mplement a function which convert the given boolean value into its string representation.

A)

#include <stdbool.h>

const char *boolean_to_string(bool b){
    return (b == true ? "true" : "false");
}
profile
it's me!:)

0개의 댓글