#include <stdio.h>
#include <stdbool.h>

int main(int argc, const char * argv[]) {
    bool youAreLearningC = true;
    bool youAreLearningPython = false; 
   
}

If we want to use a boolean in C, we need to call “<stdbool.h>” structure to print out the boolean. Which is kinda awkward for some of people, who used Swift or JS.