Differenced between c and java
No classes
Single namespace
no bounds checking for arrays or strings
Size of primitive platforms is specific
variables in C
char
int
float
double
int definer
%d
char definer
&C
float definer
%f
Char*
pointer to a char or a
variable that has the address of the first element of the array of
chars
pointer
is a typed variable whose value is the address of another object in memory
pointer to an int
a variable that contains the memory address of an int
& operator
returns the address of an object in memory
accesses the location in memory that the pointer points to