Question: Which is the smallest program to compile and run without errors?

  1. main()
  2. int main() {return 0;}
  3. main() { }
  4. main() { ; }

Answer: The correct answer of the above question is Option C:main() { }