Mard's Note
  • introduction
    • Note Introduction
  • Basics
    • UEFI/BIOS/PI Definitions
    • Term Definitions
  • C programming
    • Definitions
    • WORK IN PROGRESS
  • Assembly
    • SSE introduction
  • Rust
    • Page 1
  • Fuzz Development
  • Vectorized Fuzzing
    • Introduction
Powered by GitBook
On this page
  • Comments
  • Separators
  • Booleans
  1. C programming

Definitions

Basics of C programming

Comments

Comments in C start with // and go to the end of a line. Multiline comments begin with /* and end with */ .

Separators

Expressions in C are separated by semicolons (;). This tends to appear at the ends of lines.

Booleans

Ignoring the bool type, zero is false, and non-zero is true.

PreviousTerm DefinitionsNextWORK IN PROGRESS

Last updated 1 year ago