Search for tag: "function"
Command line arguments in C++#include <iostream> int main(int argc, char** argv) { for (int n{0}; n <= argc; n += 1) { std::cout << argv[n] << '\n'; } return 0; }
From Lane Schwartz
2 plays
0
|
|
Simplest C++ program - compile the programCompile the simplest possible C++ program using the g++ compiler. g++ -std=c++17 -o sample sample.c++
From Lane Schwartz
9 plays
0
|
|
Simplest C++ program - parts of the functionEvery function has four parts: return type name list of arguments body int main() { return 0;}
From Lane Schwartz
12 plays
0
|
|
Midterm 2 debriefOverview of how to solve the problems on the Spring 2024 midterm 2. (Not full solutions, just discussion of solution techniques and issues to be aware of -- full solutions available separately.)
From Leah Berman Williams
26 plays
0
|
|
Sample Quiz 8 for feedbackHere's a version of Quiz 8 that looks remarkably like the actual Quiz 8 from Spring 2024, worked out in detail so you can get some feedback before the midterm.
From Leah Berman Williams
12 plays
0
|
|
Worked Homework Problems: #382 and 385 from Section 4.8 (L'Hopital's Rule)Worked examples: #382 and #385 from section 4.8 of OpenStax Calcuus 1 (on L'Hopital's Rule)
From Leah Berman Williams
9 plays
0
|
|
Worksheet: Final Exam ReviewWorksheet: Final Exam Review. With commentary. And a bonus Newtons's Method problem.
From Leah Berman Williams
31 plays
0
|
|