Posts by Gustavo • 13 points
3 posts
-
-2
votes1
answer48
viewsQ: How do I get each row of my matrix to store a substring?
Suppose the user typed: I am very beautiful Each row of the Matrix would store a substring thus: I am much beautiful
-
0
votes3
answers170
viewsQ: How do I break a string into several substrings so I can work with each of them separately using the C language?
ex: Suppose the user typed "I’m cute". Then, I would work with "I", then with "I am" and last with "beautiful", separately.
-
0
votes0
answers62
viewsQ: Can I make a char pointer point to each position of a char vector in the C language?
ex: suppose a string called "Gustavo". How I make a pointer point to each position of the string and go applying the following rule. If the pointer finds the vowel A, the contents of that pointer…