• example program (file name: a.c)
    
           #include <stdio.h>
    
           int x=1, y=2;
           int t,u;
           int z[100000];
    
           int add_two_items(int a, int b)
           {
             int c;
    
             c=1;
             a=2;
             b=3;
             return(a+b);
           }
    
           void main()
           {
             x=6;
             y=7;
             t=8;
             u=9;
             add_two_items(x,t);
           }
    
           
  • Command Used in the lecture
    
           objdump -D ./a.out > ./a.dump