Arrays Flashcards
How many inputs can a function have?
0 or more!
How many outputs can a function have? :)
One
What is STRCMP?
String compare—used rather than == to compare strings.
What does strcmp do?
It compares strings in place of == for other variables.
What is assembly language?
Assembly language is the human-readable symbolic representation of machine instructions.
What is assembly code?
Assembly code is the actual source code written in
Cryptography
The art of scrambling information so you can send a message securely through any medium.
What is a prototype?
Is is a function declaration before int main including the function header and semicolon
What is an array?
A group of variables accessed via an index
What is a struct and how is it used?
Self defined data type:
Typedef struct {
…
} name
Name[index].name =…;