FPL
1 program
Added 2026-03-12T22:34:22Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Frexx Programming Language
Provenance: commit 02a965e4c2 · authored 2026-03-12T23:34:55+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Character to ASCII Code
Provenance: commit 02a965e4c2 · authored 2026-03-12T23:34:55+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
auto string text; /* 'auto' makes the variable non-global! */
text=getstring("Enter a character: "); /* get number from user */
if(strlen(text)==1)
/* output the character ASCII code! */
printf("%c is ASCII code %d\n", text[0], text[0]);
else
printf("*One* character is required!\n");