[[
wikihub
]]
Search
⌘K
Explore
People
For Agents
Sign in
Explore
People
For Agents
Sign in
@jemoka / Jemoka Knowledge Base / wiki/concepts/bool.md
Suggest edit
Cancel
Submit suggestion
Title
Name
Note
--- title: "bool" type: concept related: [Bool] source: https://www.jemoka.com/posts/kbhbool/ confidence: high status: active --- bool does not belong in pure C. #include <stdio.h> #include <stdbool.h> // you need to include this to get bools to work. int main(int argc, char *argv[]) { bool test = true; if (test) printf("its true\n") }