General Flashcards

1
Q

Where are a few places you can find C?

A
  1. Most operating systems
  2. Embedded systems (Home appliances, lighting controllers)
  3. Text editors like Notepad

And just about anywhere else.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

What are a few syntax rules in C?

A
  1. Case Sensitivity
  2. Semi colon to end a line
  3. Double quotes to hold a string
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a popular C code compiler?

A

GNU Compiler Collection (GCC)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the two ways to convert a variable?

A

Implicit and Explicit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly