>>22Okay, have this:
* Weak typing: Types are not enforced at all. Type casts are done at the programming language's will. Bad examples, Javashit and PHP. C is not as weak as JS.
* Strong typing: Types are enforced. Operating two things of incompatible types immediately halts execution of the program. Casts
need to be explicit. Examples: pretty much everything else.