Questions tagged [arrayofstring]
51 questions
-1
votes
1 answer
Input strings in array of pointers
The problem is that I don't actually know hot to deal with array of pointers, the way I do it, it pass to the position of the array the address, and so I got always in every position, the last input. But if I use the *operator, it only pass the…

dnt994
- 31
- 1
- 1
- 5
-1
votes
1 answer
Web Service ArrayOfString
How to keep the object returned by the web service as ArrayOfString ?
Contextualizing:
I'm giving maintenance in an application that consumes a Web Service, and a certain object would be a List was being returned as ArrayOfString . Where did…

Ivan Clay
- 116
- 3
-1
votes
1 answer
string sort in c using array of pointers
I am trying to do my lab sheet related to string, array and pointer. The problem is to "to sort 5 string words stored in an array of pointers."
I tried a lot and also searched the solution for the problem in various sites. I have been able to sort…

basanta
- 363
- 1
- 3
- 8
-3
votes
1 answer
How do I create an identifier for an Array of Strings without a predefined size in java?
I am trying to figure out how do I create an identifier for an array of Strings which doesn't have a predefined set number of Strings in it?
I couldn't find a solution for this specific problem when searching on the internet thats why I'm asking…
-3
votes
1 answer
Broken Binary search and Bubble sort
I really need some help with this problem, this program we are supposed to debug has some errors in it that I cannot find.
The program has an array of names and is supposed to bubble sort the names to alphabetical order and then let the user search…

Jes Uppy
- 1
- 1
-4
votes
1 answer
Check an Array String character value without extra variable
suppose I've this code:
string str[] = {"devil", "chandra"};
// check if str[0] has properly devil, character by character or not without extra variable
Now I want to check str[ 0 ]'s all character which is 'd','e','v','i','l' one by one…

Chandra Sekhar Bala
- 190
- 1
- 1
- 12