FAQ


TABLE OF CONTENTS

SOFTWARE ISSUES 

Note that as tech changes, some of these may be out of date. Please let me know via prof.friedman@gmail.com

I'm tring to run a program and I don't see the "Start Without Debugging" command

Update the software - there may be a service pack update to install. [This may be outdated]

My console window disappears before I can get a screen shot.  

At the end of your program add the following code to manually keep the window open until the user decides to close it.

char c;
cout<<"Press any key to close console window.";
cin>>c;

I'm a Mac user and I need to know the path to a file on my Desktop.

Try this:

/Users/<yourusername>/Desktop/<filename>

How can I change the default colors in the console window?

Don't like the colors in the console window (cout)? Here's how to change them:

INFO FOR MY CURRENT CLASS 

What is the Zoom link for our online classes?

You will find that information on the pinned announcement on the Learning Management System, Brightspace.

Will there be more programming problems assigned for HW? 

Very likely.

YOU'RE WELCOME!