Posts by William Philippe • 83 points
4 posts
-
2
votes2
answers147
viewsQ: Object Array (not objects) in Java - How to use
Hello, I have the following task to do: I have three types of employees (Commissioned, Salaried and Hourly) and I have to add them to a list (ArrayList) to manage them. ArrayList<Commissioned>…
-
-1
votes1
answer55
viewsQ: Problem with Double Chained List
My function - for now - can create a list and add items at the beginning or end of the list. But when calling the add item function, selecting 1 or 2, and entering the item, the program simply…
-
2
votes1
answer198
viewsQ: C - How to pass an array in which it contains pointers to struct as a function parameter?
First I created a struct vector. Next I created a pointer vector, in which each element of this vector points to each element of the struct vector. Finally, I need to pass both (the struct vector…
-
4
votes2
answers4332
viewsQ: How to identify a line break character in C?
Problem: Sometimes I get an entry like (and the entrance continues) other times as: (and the entrance continues) That is, I can receive an integer, or two, or three, and then then receive a string…