Cicode Programming Reference > Using Variables > Setting Default Variable Values

Setting Default Variable Values

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;