// Demonstrate C compiler // // gcc -S compile.c // cat compile.s int a, b, c; int main() { c = a + b; }