General Flashcards
1
Q
Where are a few places you can find C?
A
- Most operating systems
- Embedded systems (Home appliances, lighting controllers)
- Text editors like Notepad
And just about anywhere else.
1
Q
What are a few syntax rules in C?
A
- Case Sensitivity
- Semi colon to end a line
- Double quotes to hold a string
2
Q
What is a popular C code compiler?
A
GNU Compiler Collection (GCC)
3
Q
What are the two ways to convert a variable?
A
Implicit and Explicit
4
Q
What is the difference between implicit and explicit variable conversion?
A
Implicit has the computer guess the conversion type. Explicit tells the computer the conversion type.