1234
ifstream myfile("File.txt"); char ch; myfile.get(ch); //reads the next character of the stream and moves position myfile.peek(ch);//reads the next character without moving the position