Pulkit Govrani

I am a front-end developer and a technical writer. I try to share my knowledge of programming through the blogs. You can connect me through LinkedIn.

ASCII vs UNICODE – Difference Between Both

Unicode and ASCII are now the two-character encoding systems that are most extensively used worldwide. We can process, share and store text in any language through unicode encoding, as opposed to ASCII, which is used to represent text in computers as symbols, characters, and numbers. What is ASCII? American Standard Code for Information Interchange is …

ASCII vs UNICODE – Difference Between Both Read More »

Dynamic Initialization of Objects in C++

Dynamic initialization states that we are initializing the objects at the runtime. Since we use constructors to initialize everything, here we are going to use dynamic constructors. Here is an example of dynamic initialization: Output: This dynamic initialization can help us to create different constructors having the same function name but different parameters. If you …

Dynamic Initialization of Objects in C++ Read More »