C++CodeRAD Studio

LearnCPlusPlus.org:: Weekly Recap - Loops, Arrays, Conditionals, 3D And Design Patterns

Hello fellow C++ Builder Developers, We have a great new “Introduction to C++” post series for beginners and posts for professionals on our LearnCPlusPlus.org website. We will continue to release the basics of C++ over the next few weeks. If you are a beginner, new to C++, or if you are a Delphi developer and want to learn or remember the basics of C++, these posts are a…
Read more
C++

Learn To Use ExchangeRates API With REST In C++ Builder

Do you want to add live exchange rates features to your applications? You can easily get live exchange rates in our C++ Builder and Delphi applications by using ExchangeRates API from theexchangeratesapi.iothat is free for 250 requests monthly. It is very easy to…
C++Code

C++ Lambda Expressions for Beginners

A lambda expression defines an anonymous function or a closure at the point where it is used. You can think of a lambda expression as an unnamed function (that’s why it’s called “anonymous”). Lambda expressions make code cleaner and more concise, and allow you to see behavior inline where it’s defined instead of referring to an external method, like a functor. They usually follow the…
Read more
C++DelphiInterview

Developer Stories: Arsene Ekpini Elaborates On His Application eLynceus

Arsene Ekpini first used Delphi in 1997 and has been working with it since. He introduced his application to (Identify Criminal With Elynceus: Developed In C++ Builder) the Delphi 26th Showcase Challenge and we spoke with him to get a better understanding of his Delphi experiences. Table of Contents When did you start using RAD Studio/Delphi and have long have you been using it?What was it…
Read more
C++DelphiRAD Studio

Easy Serialization From Query To JSON

This is a set of features combined on a group of functions to help you work with JSON format, without had to write a bunch of classes and handles, perfect for people who work with integrated applications, such as web services host or client, or if your project requires NO…
C++

High-Performance C++ NMEA Parser GPS Interface

Most GPS modules have a serial port, which makes them excellent to connect to a microcontroller or computer. It is common for the microcontroller to parse the NMEA data. Parsing is just removing the pieces of data from the NMEA sentence so the microcontroller can do something useful with the data. NMEA is an acronym for the National Marine Electronics Association. Why do you need to parse…
Read more