Boolean variables in C

  • There is no boolean data type in C

  • Common practice:

    • Use int type variable as boolean variables

    That's because all boolean expressions in C returns 0 or 1...