Is there a way to convert, i.e., C code into English? The purpose would be to convert source code into a Text-To-Speech converter which would enable someone to "listen" to source code.
EDIT: An alternative idea would be to parse C code to be more "listenable", for example parse:
#include<stdio.h>
funcName()
{
printf("Hello World");
}
as
hash include left-angle-bracket stdio.h right-angle-bracket
newline
camelcase funcName open-paren close-paren
newline
open bracket
newline
printf open-paren quote-mark Hello World quote-mark close-paren semi-colon
newline
close-bracket
sed
it is a streaming text editor. e.g.sed -r -e 's/\{/open bracket/g' -e …
– ctrl-alt-delor Sep 20 '17 at 16:56