Data representation
How do we represent "stuff"?
Example: file my.c
%emacs my.c
main () {
float f = 3.14;
printf ("%f\n", f);
}
%cc my.c
%a.out
What is the representation of "3.14"?