Assume that a , b and c are char variables has been declared . Write some code that reads in the first character of the next line into a, the first character of the line after that into b and the first character of the line after that into c . Assume that the lines of input are under 100 characters long.

C++

LANGUAGE: C++ CHALLENGE: Assume that a , b and c are char variables has been declared . Write some code that reads in the first character of the next line into a, the first character of the line after that into b and the first character of the line after that into c . Assume…

Read More