From b83b5a60c581ea1bfefec3a349a9753e08baa195 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 11 Feb 2025 21:32:55 -0500 Subject: [PATCH] instructions on how to run the program --- labs/list_iterators_new/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/labs/list_iterators_new/README.md b/labs/list_iterators_new/README.md index 175b9f9..9741e86 100644 --- a/labs/list_iterators_new/README.md +++ b/labs/list_iterators_new/README.md @@ -65,6 +65,14 @@ When given an input GIF image file, the starter code extracts all frames from th In this lab, multiple copies of the starter code will be provided, but you will only be working on the *reverseFrames* function - you will be required to re-write this function in different ways. +**Note**, the given program expects the name of the input file to be *input.gif*, and it will produce an output file named *reversed.gif*. You can compile and run the program like this: + +```console +$ g++ main.cpp +$ ./a.out +GIF successfully written to reversed.gif +``` + ## Checkpoint 1: Reverse with STL Vector Swaps *estimate: TBD*