InterviewSolution
Saved Bookmarks
| 1. |
How Do You Determine The Length Of A String Value That Was Stored In A Variable? |
|
Answer» To get the length of a string VALUE, use the function STRLEN (). For example, if you have a variable named FULL Name, you can get the length of the stored string value by USING this STATEMENT: I = strlen (Full Name); the variable I will now have the character length of the string value. To get the length of a string value, use the function strlen (). For example, if you have a variable named Full Name, you can get the length of the stored string value by using this statement: I = strlen (Full Name); the variable I will now have the character length of the string value. |
|