Sunday, July 27, 2008

Variable In C++

Declaration:
DataType VarName;
Use:
VarName=Value;
Example :
int x;
x=10;
Declare with Initial Value:
int x=10;

No comments: