Static vs. dynamic or loosely typed language.
Static Languages:
In static languages, once we define a variable and store a number value in it, we cannot assign another type of value to this variable.
e.g.
#include <iostream>
using namespace std;
int main() {
int number = 5;
number = "...
yashpurkar.hashnode.dev2 min read