Examining the variable and their data types.

Go4Expert Member
7Mar2010,01:41   #1
Fatima Khan's Avatar
How to examine the value of variable when they are not define n hoe to examine their data types ?
Go4Expert Member
7Mar2010,13:55   #2
krazytechno's Avatar
First of all the question is not right.You can not use a variable in programming like c,c++,java
etc until it is not defined.Because if you wont define a variable data type, compiler could not recognize that and it will throw an error.So first define its data type and then use it.
Go4Expert Member
7Mar2010,18:54   #3
Fatima Khan's Avatar
HI,
I mean that how the compiler Know the data type of the variables .
Pro contributor
7Mar2010,22:04   #4
virxen's Avatar
from the values you assign to it



p.s.
if you use vb
use this command as your first in your code
option explicit
this will force you to define the datatypes for all variables used by your program.