I’m just wondering should I use std::size_t for loops and stuff instead of int? For instance: #include <cstdint> int main() { for (std::size_t i = 0; i < 10;...
  • May 23, 2022
  • 0 Comments