Jyotiprakash Mishrablog.jyotiprakash.org·Dec 24, 2023Pragmas are all about hints!The #pragma directive in C is used to provide additional information to the compiler. It's compiler-specific and can be used for various purposes, such as controlling compiler warnings, optimizing code, or specifying architecture-specific features. H...DiscussC Programmingpragma
Luxury Binariesbinaries.hashnode.dev·Nov 23, 2023How to share data between different instance of same DLLUsually Dlls are loaded into its corresponding process address space. Indeed the code is shared between all instances but not the global data. So the issue that we might face is – how can we share common data between all dll instances? #pragma data_s...Discusspragma