How do you declare constants?

The const specifier indicates that the declared value cannot be modified. The class of a constant may be either public or static. If no class is explicitly declared, the constant is assigned the default class public. Once a constant is defined, it remains in existence until you exit WinRunner.
b. The syntax of this declaration is:
[class] const name [= expression];

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions