DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

C Reference: Operators

Quick reference for Operators.

Read time: 1 min Words: 14
My Progress

C Reference — Operators

Quick summary of Operators with syntax and example.

Syntax

int main(){ ... }

Example

#include <stdio.h>

int main(){
  printf("Hello C\n");
  return 0;
}