User profile: JLBorges

User info
User name:JLBorges
History
Joined:
Number of posts:1752
Latest posts:

std::string vs std::vector
[code]std::char_traits<char>[/code] doesn't make any sense for binary (non- character) data. I woul...

convert from python to c++
[code]#include <vector> #include <random> #include <ctime> #include <iostream> int main() { std...

How to store a number in different variables
[code]#include <cstdint> #include <iostream> #include <iomanip> int main() { constexpr std::uin...

3 Questions - basic c++
Keep the inner loop and the line following it just the same as the earlier program. Write an outer ...

c++ program
> [code]if( a[index]== a[index+1] )[/code] The last time through the loop, [code]index == (elements...