

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Information about a c++ programming lecture, including topics covered, reading materials, and a sample c++ program. It also includes details about an alternate final exam and an invitation to a cafe hangout. An introduction to c++ syntax and structure, user-defined types, and parameter passing.
Typology: Lecture notes
1 / 2
This page cannot be seen from the preview
Don't miss anything!


void Binky(int x, int y) { x *= 2; y = 0; } int main() { int a = 4, b = 20; Binky(a, b); ... void Binky(int &x, int y) { x *= 2; y = 0; } int main() { int a = 4, b = 20; Binky(a, b); ...