Need references: Auto code generator C++ [closed]
I need to create a Auto code generator that generates Fortran codes and implemented on either C or C++.
Can anyone give me some references or a good place to start this... Even any suggestion or ideas too....
This is called a compiler. Anything that translates from one language to another is a compiler. I suggest you read up on compilers.
Good starting places:
#include <string.h>
(for C)
#include <sstream>
(for C++)
精彩评论