Save
Busy. Please wait.
Log in with Clever
or

show password
Forgot Password?

Don't have an account?  Sign up 
Sign up using Clever
or

Username is available taken
show password


Make sure to remember your password. If you forget it there is no way for StudyStack to send you a reset link. You would need to create a new account.
Your email address is only used to allow you to reset your password. See our Privacy Policy and Terms of Service.


Already a StudyStack user? Log In

Reset Password
Enter the associated with your account, and we'll email you a link to reset your password.
focusNode
Didn't know it?
click below
 
Knew it?
click below
Don't Know
Remaining cards (0)
Know
0:00
Embed Code - If you would like this activity on your web page, copy the script below and paste it into your web page.

  Normal Size     Small Size show me how

C++ Program Design

Program organization: install, compile, shared headers, namespaces. "Quiz 2"

QuestionAnswer
When should you declare things? The only rule is to declare things before using them.
What is the purpose of a shared header file? To insure that the declaration and definition of global functions and objects are consistent. They are conventionally inserted with a #include "filename.h"
Write a example of using a shared header file. Write out the .h file and two .cpp files. //prog.h extern int x; int f(); //prog1.cpp #include "prog.h" int x=0; int main() { f(); return 0; } //prog2.cpp include "prog.h" int f() { return x;}
How do you compile your program in UNIX and Windows? g++ file1.cpp -o hello ./hello gxx hello.cpp -o hello.exe >>hello (-o renames the default a.exe to hello.exe)
g++ file.cpp Compile, produce executable a.out in UNIX
g++ file1.cpp file2.o Compile .cpp and link .o to executable in a.out
g++ -Wall Turn on all warnings
g++ -c file1.cpp Compile to file1.o, do not link
g++ -O Optimize executable for speed
g++ -v Verbose mode
g++ -DX=Y Equivalent to #define X Y
g++ --help Show all g++ options
gxx file1.cpp Compile in Windows MS-DOS box (DJGPP) to A.EXE
How do you create a library (namespace)? #define MYLIB_H namespace mylib {...}
What is a trick to guard against possible multiple inclusions of the header file? Test for it with #ifndef ... #endif on the first and last lines of the code. Don't have a using namespace std;.
What are three free GNU GCC compiler packages for Windows? DJGPP MinGW and Cygwin
What is MinGW? A native Windows port of the GNU Compiler Collection (GCC)
What is the procedure to install and configure GNU GCC on Windows? How do you test that you succeeded? Download MinGW. Install MinGW with C and C++ compilers. Copy the path C:\MinGW\bin to Computer Properties, Advanced System Settings, Environment Variables, Path, Variable Value type a ";" at the end of the string, paste it. Type gcc into the cmd screen.
Created by: themagicdwarf
Popular Computers sets

 

 



Voices

Use these flashcards to help memorize information. Look at the large card and try to recall what is on the other side. Then click the card to flip it. If you knew the answer, click the green Know box. Otherwise, click the red Don't know box.

When you've placed seven or more cards in the Don't know box, click "retry" to try those cards again.

If you've accidentally put the card in the wrong box, just click on the card to take it out of the box.

You can also use your keyboard to move the cards as follows:

If you are logged in to your account, this website will remember which cards you know and don't know so that they are in the same box the next time you log in.

When you need a break, try one of the other activities listed below the flashcards like Matching, Snowman, or Hungry Bug. Although it may feel like you're playing a game, your brain is still making more connections with the information to help you out.

To see how well you know the information, try the Quiz or Test activity.

Pass complete!
"Know" box contains:
Time elapsed:
Retries:
restart all cards