Setting Default Variable Values
- Last UpdatedJul 18, 2023
- 1 minute read
When you declare variables, you can set them to an initial (startup) value; for example:
STRING Str = "Test";
REAL Result = ;
INT x = 20, y = 50;
When you declare variables, you can set them to an initial (startup) value; for example:
STRING Str = "Test";
REAL Result = ;
INT x = 20, y = 50;