Clarification on if statementsHello, in line 4 you want to read two variables from the user where you only need one. So line...
a strange way of using variableYou declared a variabel x. So, the program allocates four bytes of memory somewhere. Then you write...
Delete one letterIf you know where the letter ist, yes it is possible to overwrite the letter. You cannot delete it ...
Cannot #include <vector>I only get errors if I try to run this code. [code] #include "stdafx.h" #include <iostream> ...
guess a random number (I'm having trouble with loops)In the above code you always calculate the random-number anew by calling the rand()-function. Jus...