What is variable typing?
Variable typing is used to assign a number to a variable and then assign string to the same variable. An example is as follows:
1
2
3
|
i= 8;
i=”john”;
|
Variable typing is used to assign a number to a variable and then assign string to the same variable. An example is as follows:
1
2
3
|
i= 8;
i=”john”;
|