/* * ISA 563, Spring 2011 * Copyleft by Muhammad Abdulla */ #include /* * hello.c -- Prints the famous "hello, world" message. */ int main(int argc, char* argv[]) { printf("hello, world\n"); return 0; }