set value of boolean in c

#include <stdbool.h>

int main() {
    bool myBoolean = true; // Set to true
    // Or
    myBoolean = false; // Set to false

    return 0;
}