Search Results

0
votes

How to check the length of an input? (C++)

You can check the length of your NULL terminated string that getline returns by using: int len = strlen(lvlinput); This works because …