Last active
October 8, 2024 17:55
-
-
Save ProfAvery/b2c6b31d67a92d23ae655aa361e84b11 to your computer and use it in GitHub Desktop.
CPSC 458 - 32-bit and 64-bit versions of hello.exe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
int c; | |
printf ("Hello.\n"); | |
exit (0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment