Recent content by RuthKom

  1. R

    C/C++ Understanding C++ Program Inputs: A Beginner's Guide

    Thx jtbell I want to know why it starts reading where the first one stopped...
  2. R

    C/C++ Understanding C++ Program Inputs: A Beginner's Guide

    I'm a beginner and currently learning programming by myself. when I read a book I came across an example which I don't quite understand. #include <iostream> using std::cout; using std::cin; using std::endl; int main() { char string1[ 20 ]; // reserves 20 characters...