mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
8 lines
81 B
C
8 lines
81 B
C
#include <stdio.h>
|
|
main()
|
|
{
|
|
WORD i;
|
|
i = '\f';
|
|
printf("FF = %d (%x)\n",i,i);
|
|
}
|