Show:
Questions
Responses
Print
Basic
Data Structures
Libraries
Functions
Advance
100
A fork in the road
What is an if statement
100
Has random access but not dynamic in size
What is an array
100
Contains function prototypes for the standard input/output
What is stdio.h
100
Returns a pointer to a block of memory
What is malloc
100
This type points to a character
What is char*
200
It goes over and over again
What is a loop
200
Can hold many different data types
What is a struct
200
Contains prototypes for math functions
What is math.h
200
When a function is passed a copy of a variable
What is calling a functions by value
200
This character is at the end of every string
What is NULL
300
What is another way to write: x = x / 2;
What is x /= 2
300
Is associated with the actions push/pop
What is the stack
300
Contains functions that test for certain characters
What is cytpe.h
300
returns the size of its parameter
What is sizeof
300
A function that calls itself
What is a recursive func
400
Used to get the remainder
What is %
400
Its general operation is described as FIFO
What is a queue
400
Contains function prototypes for conversions of numbers to text
What is stdlib.h
400
At the start of every program
What is main
400
Holds the values of between 0 and 4 Billion
What is an unsigned int
500
It always four bytes not matter the type
What is the size of pointer
500
A set of nodes that can be traversed back and forth
What is doubly link list
500
Defines macros that are useful for reporting error conditons
What is errno.h
500
Returns a number between 0 and 1
What is rand
500
Used to give a reference to a data type
What is an &