/* Compiled C * A collection of C programs that are compiled to assembly * code for understanding how C and assembly work. * GitHub: https://wwww.github.com/0x4248/Compiled_C * Licence: GNU General Public Licence v3.0 * By: 0x4248 * * This program defines constants. */ #define CONSTANT_1 1 #define CONSTANT_2 2 #define CONSTANT_3 "Hello World" #define CONSTANT_4 1.0 int main() { return 0; }