Programming Tools
Last modified Wednesday, 22-Oct-2025 16:26:46 UTC.
- What is the 1st step done by gcc?
- What is the 2nd step done by gcc?
- What is the 3rd step done by gcc?
- What is the 4th step done by gcc?
- What flag stops gcc after the preprocessor?
- What flag stops gcc after producing assembler code?
- What flag stops gcc after producing relocatable binary code?
- What does the -Wall flag do in gcc?
- What does the -O flag do in gcc?
- What does the -I flag do in gcc?
- What does the -l flag do in gcc?
- What does the -L flag do in gcc?
- What does the -D flag do in gcc?
- What does the preprocessor do with #include lines?
- What does the preprocessor do with #define lines?
- What does the preprocessor do with #if lines?
- What files often contain the interface (declarations) in a C program?
- What files often contain the implementation What is the make utility used for?
- What is a target in a Makefile?
- What is a dependency in a Makefile?
- What is a action in a Makefile?
- What character must precede an action?
- What does a clean target usually do in a Makefile?
- How should non-file targets be identified in a Makefile?
- What are version numbers used for?
- How do revision control systems typically track previous versions of a file?
- What is a Github Personal Access Token?
- What does the command git init do?
- What does the command git add do?
- What does the command git commit do?
- What does the command git push do?
- What does the command git clone do?
- What does the command git status do?
- What does the command git checkout do?
- What does the command git tag do?
- What does the command git log do?
- What is a Github pull request?