C & C++

Systems, embedded, toolchains, and modern C/C++ evolution.

  • 8 Tracked terms
  • Last 30 days Feed window

What this topic collects on

An article joins this feed when it matches these terms. Each one is also a search of its own.

Latest in C & C++


medium.com > @micmozatipstutorials > software-vs-hardware-vs-firmware-understanding-the-three-layers-of-modern-technology-098b6b883c0c

Software vs Hardware vs Firmware: Understanding the Three Layers of Modern Technology

9+ hour, 56+ min ago   (977+ words) When people use a computer, smartphone, smart TV, router, game console, or other electronic device, they often …...


analyticsindiamag.com > ai-news > musk-reveals-grok-48s-pre-training-stack-is-written-in-c-by-humans-not-ai

AIM — India's Leading AI & Data Science Media Platform

14+ hour, 23+ min ago   (15+ words) Musk Reveals Grok 4.8’s Pre-Training Stack is Written in C++ by ‘Humans’, Not AI analyticsindiamag.com...


medium.com > @jeet.patel0474 > from-3ms-to-0ms-the-hidden-memory-trap-in-c-maps-3c5344a7bdad

From 3ms to 0ms: The Hidden Memory Trap in C++ Maps

13+ hour, 19+ min ago   (218+ words) I thought I was writing the cleanest one-liner of my life. To solve Two Sum, I stored 1-based indices in an unordered_map so I could check for complements directly inside an `if` statement: It passed. But it took 3ms. Why would two…...


embeddedcomputing.com > technology > open-source > linux-freertos-related > cross-platform-mbsd-without-the-s-function-headache-using-coderexternaldependency-to-deploy-a-single-simulink-model-across-linux-and-qnx

Cross-Platform MBSD Without the S-Function Headache: Using coder.ExternalDependency to Deploy a Single Simulink Model Across Linux and QNX

1+ day, 1+ hour ago   (459+ words) There is a better way. MATLAB’s coder.ExternalDependency class, combined with a MATLAB Function block in Simulink, lets you define a clean interface to your custom C code and third-party libraries with all target-specific build logic centralized in one versioned…...


hackaday.com > 09/14/2026 > pulse-a-new-vhdl-simulator

Pulse: A New VHDL Simulator

1+ day, 9+ hour ago   (35+ words) With VHDL being arguably more deterministic and bullet-proof than Verilog, it's good to see another open source VHDL simulator joining the fray that is not a variation of ghdl. Written by [Óscar Grim......


knowledgegate.ai > blog > c-lambda-expressions-captures-closures-and-practical-pattern

C++ Lambdas: Captures, Closures and Sort Comparators

2+ day, 11+ hour ago   (853+ words) Learn to read C++ lambdas, trace copied and referenced state, write a valid sort comparator, and prevent dangling-reference bugs in stored callbacks. Exam prep & CS education For a first pass through syntax, value-versus-reference capture, and broad STL use, start with…...


knowledgegate.ai > blog > double-pointers-in-c-tutorial-with-examples

Double Pointers in C: Memory Model and Worked Examples

2+ day, 11+ hour ago   (317+ words) Exam prep & CS education Here, value stores 24, p stores the address of value, and pp stores the address of p. Use the state before the assignment to 81 and track one pointer level at a time. Meaning or value before mutation This…...


dev.to > natuworkguy > i-rewrote-one-function-in-squirrel-then-in-c-one-line-of-python-was-just-as-fast-3han

I Rewrote One Function in Squirrel, Then in C. One Line of Python Was Just as Fast.

2+ day, 21+ hour ago   (543+ words) I maintain a 2D game engine in Python called ABS Engine. Last week I decided it needed C. Not because anything was slow. That is the embarrassing part. I wanted to drop a.c file into a folder and call it from Python…...


dev.to > harrisonsec > store-load-reordering-x86-vs-arm64-and-the-bug-intel-was-hiding-de9

Store Load Reordering: x86 vs ARM64, and the Bug Intel Was Hiding

3+ day, 4+ hour ago   (366+ words) Here is a bug report that keeps recurring, in different words, every time a team moves to ARM: "the same code works on our Intel CI and on the developers' older MacBooks, but it corrupts data / deadlocks / returns impossible values…...