Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CH1 Basics/ageExcercise/ageExcercise/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Excercises
//
// Created by Jay Howard on 4/14/16.
// Copyright 2016 Jay Howard. All rights reserved.
// Copyright © 2016 Jay Howard. All rights reserved.
/*
From "Discovering Modern C++ An Intensive Course for Scientists, Engineers, and Programmerss"
Excercise 1.10.1 Age: Write a program that asks input from the keyboard and prints teh result on the screen and writes it to a file. The quesiton is: "What is your age?"
Expand All @@ -16,7 +16,7 @@ Excercise 1.10.1 Age: Write a program that asks input from the keyboard and prin

using namespace std;

void stringToOstream(string s, ostream& o) {
void stringToOstream(const string& s, ostream& o) {
if (o.good()) {
o << s;
}
Expand Down Expand Up @@ -46,4 +46,4 @@ int main() {
stringToOstream(response, file);

return 0;
}
}