Here is a sample simple C code used to demonstrate the use of objdump, objdump_demo.c:

int global_variable =66;

int function_defined_here(int argument) {
  int local_variable;

  local_variable = function_defined_elsewhere();

  return (argument + local_variable + 42); 
}