4
votes
5answers
254 views
Why can I not assign interchangeably with two structs that have identical contents?
I'm trying to learn C and I've come across something weird:
struct
{
int i;
double j;
} x, y;
struct
{
int i;
double j;
} z;
Here, you can see I created t …
1
vote
2answers
61 views
How would you use the MVC pattern with Winforms when it comes to using ListViews?
My old way of handling WinForms application was throwing all the logic into the form itself.
I'm trying to start utilizing MVC/MVP practices with my WinForms applications.
Can someo …
4
votes
8answers
233 views
When do you want to use pointers vs values in C++?
I'm coming from Java and attempting to learn C++.
As far as I can tell, using Pointers is very similar to how reference variables work in Java, in that you pass a memory address to the valu …
