Skip to content

Instantly share code, notes, and snippets.

@ProfAvery
Last active October 8, 2024 17:55
Show Gist options
  • Save ProfAvery/b2c6b31d67a92d23ae655aa361e84b11 to your computer and use it in GitHub Desktop.
Save ProfAvery/b2c6b31d67a92d23ae655aa361e84b11 to your computer and use it in GitHub Desktop.
CPSC 458 - 32-bit and 64-bit versions of hello.exe
#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