Posts

Showing posts from November, 2023

Reduced & Modified Instruction Set Wrapper for C and C++

This R&D project intends to address / remedy: 1: The availability of unsafe functions in C/C++ 2: Certain overly complex Functionalities in C/C++ Project Goals : 1: This project thus intends to derive a subset of C and C++ (initially catering enthusiasts, hobbyists, students and novices) AND allow a safe coding platform, where unsafe functions (intrinsic to the language), are filtered out / not allowed to go through into compilation stage. The Wrapper that will be developed under this project, will thus filter out all such "flagged" functionalities. (Thus for example, all string manipulation functions which are know to be potentially unsafe will be excluded.) 2: Many novices/ new developers, finds the C/C++ memory pointer syntax overly cryptic and convoluted. For example we have Pointers, Pointers to Pointers,  References etc. etc. Thus for example when one gets into scenarios the such of, double indirections (and beyond), many finds it overly convoluted. Thus to simplify...