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.

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

Quiz yourself by thinking what should be in each of the black spaces below before clicking on it to display the answer.
        Help!  

Question
Answer
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.  
🗑


   

Review the information in the table. When you are ready to quiz yourself you can hide individual columns or the entire table. Then you can click on the empty cells to reveal the answer. Try to recall what will be displayed before clicking the empty cell.
 
To hide a column, click on the column name.
 
To hide the entire table, click on the "Hide All" button.
 
You may also shuffle the rows of the table by clicking on the "Shuffle" button.
 
Or sort by any of the columns using the down arrow next to any column heading.
If you know all the data on any row, you can temporarily remove it by tapping the trash can to the right of the row.

 
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
Created by: themagicdwarf
Popular Computers sets