Home » Archimedes archive » Acorn User » AU 1994-08.adf » !C_C » HelloWorld

HelloWorld

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn User » AU 1994-08.adf » !C_C
Filename: HelloWorld
Read OK:
File size: 003B bytes
Load address: 0000
Exec address: 0000
File contents
#include <stdio.h>

main()
{
  printf("Hello World!\n");
}
00000000  23 69 6e 63 6c 75 64 65  20 3c 73 74 64 69 6f 2e  |#include <stdio.|
00000010  68 3e 0a 0a 6d 61 69 6e  28 29 0a 7b 0a 20 20 70  |h>..main().{.  p|
00000020  72 69 6e 74 66 28 22 48  65 6c 6c 6f 20 57 6f 72  |rintf("Hello Wor|
00000030  6c 64 21 5c 6e 22 29 3b  0a 7d 0a                 |ld!\n");.}.|
0000003b