Hello. Is there any way to set a "lock" on certain couts from system ("cls"). You can this with const to "lock" a variable to a certain value so I am wondering if that is true for couts from system ("cls"). This would make my program much simpler to write. Any help would be appreciated. Thank you.
Also, "const" doesn't "lock" anything, it just declares the instance of a read-only variable, meaning you can not change that constant variable's value.