Skip to main content
1 of 2
JacquesB
  • 62.4k
  • 21
  • 137
  • 190

It depends on the language. In C, types exist only at compile time. In Java and C#, types exists both at compile time and runtime. In dynamic languages (like Python, JavaScript etc.) they exist only at runtime. This means the answers to you question is quite different depending on the language.

JacquesB
  • 62.4k
  • 21
  • 137
  • 190