Skip to content

Instantly share code, notes, and snippets.

@hgomez
Created September 23, 2013 13:40
Show Gist options
  • Save hgomez/6670556 to your computer and use it in GitHub Desktop.
Save hgomez/6670556 to your computer and use it in GitHub Desktop.
lcc83 from M. Lecharny
#include <stdio.h>
main()
{
char A[] = "Bonjour!";
printf("Je vous souhaite bien le %s\n", A);
7[A] = '?';
printf("Vous disiez bien le %s\n", A);
}
@hgomez
Copy link
Author

hgomez commented Sep 23, 2013

cc lcc83.c -o lcc83
./lcc83
Je vous souhaite bien le Bonjour!
Vous disiez bien le Bonjour?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment