Computer Networking
Databases
Languages
Production Software
Real_Time_Systems
Security

C Operators

  • "+, -, asterisk, /, %, ++, --"
  • Can use before equals:
    • var+=4;
  • Ternary:
    • Shorthand if/else
      • ({condition})?{ifTrue}:{ifFalse}