can you compare string values in c++ code example
Example 1: How do you print a integer in python
x = 7
print('Number: ' + str(x))
#str() turns anything inside to a string which allows you to
#add it to another/different string
Example 2: How do you count characters in a string array in Java?
package practical5;
import java.util.Arrays;
public class Part1_9 {
public static void main(String[] args) {
String quoteArray[] = { "\"Continuous", "effort", "not", "strength",
"nor", "intelligence", "is", "the", "key", "to", "unlocking",
"our", "potential.\"\n" };
for (int counter = 0; counter < quoteArray.length; counter++) {
System.out.print(quoteArray[counter] + " ");
}
for (String element : quoteArray) {
System.out.print(element + " ");
}
System.out.println();
System.out.println("Number of words in array: " + quoteArray.length);
**
for (int counter = 0; counter < quoteArray.length; counter++) {
String letters = new String(quoteArray[counter]);
}
}
}
Example 3: compare string c++
int compare (const string& str) const;