Posts by Chisté • 7 points
3 posts
-
0
votes3
answers181
viewsQ: Use of data type modifiers
Interestingly, I was very interested to know why data-type modifiers are not so widely used. It is said that the modifiers are used to "efficiently" the performance of the program, since you specify…
-
1
votes1
answer40
viewsQ: Failure to run loop
// Example program #include <iostream> #include <string> #define ACCOUNT_MAX 3 using namespace std; class User { private: struct Accounts {string user, password, firstName;}; struct…
-
-3
votes2
answers896
viewsA: Struct or Classes, huh?
First of all, struct is not the same thing as a class as many answered you, although both are extremely similar, both in terms of syntax (written in the code itself) and in the displayed result.…