User profile: coder777

User info
User name:coder777
History
Joined:
Number of posts:8444
Latest posts:

How to get program to distribute input by alternating between two, multi-line string inputs
You actually need 3 loops: 1. Read the .a values and store them [in a vector] e.g.[code] for(int i ...

How to use C++ like modules in Arduino
!) There is a difference between Arduino and Raspberry PI. Arduino is more limited [regarding C++] t...

Best way to modify a variable in a class
[code]enemyList[/code] still contains copies. The variable [code]rat[/code] is not modified on line ...

Best way to modify a variable in a class
[quote]So what about this situation here? Is it a good candidate for pointers or do I need to design...

About standard strings in Linux?
Take a look at this: https://www.man7.org/linux/man-pages/man7/UTF-8.7.html Yes: char is used for ...