Object File Formats

By Rand Gray and Deepak Mulchandani

Dr. Dobb's Journal May 1997

(a)	1 
	2 
	3   #include <stdio.h>
	4 
	5   main()	                  (b)	Function Name: main(), Arguments: None 
	6   { 		                        Function Begin
	7 
	8      int x; 		                Define Local Variable: "x"; Type "integer" 
	9  
	10     x=5; 		                Assign the variable "x" the value 5 
	11 
	12  } 		                        Function End 
	13 

Figure 2: (a) Program main.c; (b) attribute list.

Back to Article


Copyright © 1997, Dr. Dobb's Journal