2025 Keynote, Daisy Hollman: “Crafting the Code You Don’t Write: Sculpting Software in an AI World”

We’ve previously announced keynotes by Bjarne Stroustrup on Concept-based Generic ProgrammingMatt Godbolt on C++ and Assembly and by Vittorio Romeo on Practical Data-Oriented Design.

We’re pleased to announce our next keynote for CppCon 2025! Dr. Daisy Hollman is a distinguished software engineer and programming language expert, known for her impactful contributions to the C++ standards committee since 2016. She has worked on C++ language and library design at Google, and more recently joined Anthropic, where she explores the intersection of programming languages and AI systems.

From Daisy’s talk description:

Crafting the Code You Don’t Write: Sculpting Software in an AI World

It’s shockingly uncontroversial to say that the fields of developer experience and developer productivity have changed more in the past six months than in the 25 years before that.

As part of the Claude Code team at Anthropic, I’ve had the privilege of witnessing the evolution of agentic coding from proof-of-concept experiments to nearly autonomous software engineers in just six months. In this keynote, I’ll share some of my experiences and learnings from that journey, talk about how LLMs work more generally, attempt some live demonstrations of the latest functionality, explore the future of agentic programming, and tie all of this back to what it means for your workflow as a software engineer.

When I agreed to give this talk earlier this year, there was some portion of the narrative that involved “why you should be using agents to accelerate your development process.” Since then, the world of software engineering has evolved such that the interesting question is no longer “why” but “how.” Like sculptors facing the invention of power tools, or painters around the invention of photography, we now live in a world where vast quantities of rough-draft code can be generated with a very low barrier to entry. How does the role of a software engineer evolve when AI can autonomously implement features from requirements? How do we build safety features into the power tools we’re chiseling away at our codebases with? What aspects of software craftsmanship become more important, not less, in an age of abundant code generation? And critically for the C++ community: how do we leverage these tools where correctness and performance are non-negotiable? The future isn’t about AI replacing programmers, but about a fundamental shift in how we think about software creation. And surprisingly, you might not miss the old way of doing things.

Registration is open so don’t miss out on CppCon 2025 this September 14-19. Register today!

2025 Keynote, Vittorio Romeo: “More Speed & Simplicity: Practical Data-Oriented Design in C++”

We’ve previously announced keynotes by Bjarne Stroustrup on Concept-based Generic Programming, and by Matt Godbolt on C++ and Assembly

We’re pleased to announce our next keynote for CppCon 2025! Vittorio Romeo is a highly respected figure in the C++ community, known for his deep expertise, prolific contributions, and engaging teaching style.

From Vittorio’s talk description:

More Speed & Simplicity: Practical Data-Oriented Design in C++

Data-Oriented Design (DOD) presents a different way of thinking: prioritizing data layout not only unlocks significant performance gains via cache efficiency but can also lead to surprising simplicity in the code that actually processes the data.

This talk is a practical introduction for C++ developers familiar with OOP. Through a step-by-step refactoring of a conventional OOP design, we’ll both cover how data access patterns influence speed and how a data-first approach can clarify intent.

We’ll measure the performance impact with benchmarks and analyze how the refactored code, particularly the data processing loops, can become more direct and conceptually simpler.

Key techniques like Structure-of-Arrays (SoA) vs. Array-of-Structures (AoS) will be explained and benchmarked, considering their effects on both execution time and code clarity. We’ll pragmatically weigh the strengths (performance, simpler data logic) and weaknesses of DOD, highlighting how it can complement, not just replace, OOP.

We’ll also demonstrate that DOD doesn’t necessitate abandoning robust abstractions, showcasing C++ techniques for creating safe, expressive APIs that manage both complexity and performance.

Let’s learn how thinking “data-first” can make your C++ code faster and easier to reason about!

Registration is open so don’t miss out on CppCon 2025 this September 14-19. Register today!

CppCon 2025 Program Announced

The Main Program schedule for CppCon 2025 is now live!

We’ll have over one hundred breakout sessions delivered onsite by the best C++ presenters in the industry, many returning from previous years as well as some exciting new voices. We will be announcing our five headline talks here in the coming days.

This year’s Main Program features a broad and deep general program. Within the program are eight dedicated topic tracks: The Back to Basics Track (sessions), the Embedded Track (sessions), the GameDev Track (sessions), the Robotics Track (sessions), the Scientific Computing Track (sessions), the Software Design Track (sessions), and Tooling Track (sessions) are back, and we have a new Business and Career Track (sessions)! These “tracks” are to help find talks in specific areas, but as always, there are lots of talks not assigned to a specific track covering a wide variety of important topics.

In addition to the Main Program, we’ll have our annual Committee Fireside Chat, our poster competition, multiple sessions of lightning talks, Open Content talks, BOFs, exhibitors, social events, pre/post-conference classes, and most importantly of all, the informal “hallway track,” providing the opportunity to engage with professionals from across our industry.

Most of the program is published, but we are still working on a few surprises, so keep checking back to see any new additions or time slot adjustments.

We’d like to thank the Program Committee, our speakers, and the many professionals who proposed talks which we, unfortunately, just couldn’t squeeze in this year. Thank you for your hard work and enthusiastic support for this year’s program!

We hope to see you all in just over a month—so register now.

2025 Keynote, Matt Godbolt: “C++: Some Assembly Required”

We’re pleased to announce our next keynote for CppCon 2025! Matt Godbolt is a long time CppCon attendee and creator of Compiler Explorer. Godbolt, in addition to being a verb, is an excellent speaker and we are honored to have him as a returning keynote presenter.

From Matt’s talk description:

C++: Some Assembly Required

Join Matt in exploring how the C++ ecosystem has evolved through the interplay of intentional design and emergent collaboration. Standards committees craft language features and compiler teams implement them, but something amazing happens in the spaces between: tools appear, communities form, and solutions emerge that nobody quite planned for. What started as individual developers solving their own problems has grown into an interconnected ecosystem that shapes how we all write C++.

From documentation to testing, from build systems to package managers, we’ll examine how the C++ community has assembled itself around shared pain points and accidental standards. Using examples and perhaps too many rainforest metaphors, this talk celebrates not just the language we’ve built, but the organic ecosystem that’s grown up around it. Come discover why C++’s greatest strength might be that it’s always required some assembly.

Registration is open so don’t miss out on CppCon 2025 this September 14-19. Register today!

Opening 2025 Keynote, Bjarne Stroustrup: “Concept-based Generic Programming”

Meeting in personCppCon 2025 will kick off on Monday, September 15 with Bjarne Stroustrup back delivering the opening keynote in Aurora.

Bjarne’s opening keynotes for CppCon are one of the most anticipated and most watched talks in C++. His talks are always among the most viewed presentations on the CppCon YouTube Channel.

 

From his talk description:

Concept-based Generic Programming

This talk presents programming techniques to illustrate the facilities and principles of C++ generic programming using concepts. Concepts are C++’s way to express constraints on generic code. As an initial example, it provides a simple type system that eliminate narrowing conversions and provides range checking.

Concepts are used throughout to provide user-defined extensions to the type system. The aim is to show their utility and the fundamental ideas behind them, rather than to provide a detailed or complete explanation of C++’s language support for generic programming or the extensive support provided by the standard library.

The final sections briefly present design rationales and origins for key parts of the concept design, including use patterns, the relationship to Object-Oriented Programming, value arguments, syntax, concept type-matching, and definition checking. They also mention static reflection, a C++26 improvements in the support of general programming.

Be at CppCon again this year as Bjarne Stroustrup flies us above this complex landscape of issues and shines a spotlight on the most important things to know, and to think about, in C++ in 2025. Come to the talk, bring your questions, and don’t miss out!

Registration DeskRegistration is now open so don’t miss out on CppCon 2025 this September 14-19. Register today!

 

 

 

 

CppCon 2025 Attendance Support Ticket program

CppCon is running an Attendance Support Ticket program. These free tickets are for people who would not be able to attend otherwise. This program is limited to conference tickets and doesn’t include support for transportation or lodging. This is an open program, but reasons to apply may include financial assistance, that you are part of an underrepresented group in tech, and others.

In order to apply for this program, please fill in the application form here. The application deadline is July 12, 2025. Decisions will be sent by July 14.

We look forward to seeing many of you again this year at CppCon 2025!

Wings Air Museum Field Trip Announced

The CppCon 2025 field trip will be to the Wings over the Rockies Air and Space Museum near the conference in Aurora, CO.

Wings Over the Rockies Air & Space Museum - Denver, CO - Uncover Colorado

Join us Sunday, September 14th to experience aerospace history – the museum has a large collection of airplanes, rockets, engines, and even a replica Apollo guidance computer on site. We will have lunch catered by Curtis Park Delicatessen, a delicious lunch spot local to Denver and Boulder.

 

Wings Over the Rockies Air & Space Museum, Denver, Colorado, U.S ...

If you are arriving for CppCon 2025 by September 14, Sunday morning, this is your opportunity to get to know some of your fellow attendees while learning about aerospace history.

See the CppCon 2025 Field Trip page for details.

Register here!


North Denver Metro C++ MeetupThis year’s field trip is sponsored by the North Denver Metro C++ Meetup.

 

 

 

CppCon 2025 Call for Poster Submissions

Are you doing something cool with C++? Got a great new library, technique, or tool?

We want you to share it with the C++ community by creating a poster and presenting it at CppCon 2025!  The poster program will be back in action this year at the conference.

The poster submissions deadline is July 27th, with decisions sent by August 11th. For topic ideas, submission instructions, and advice on making the best possible submission, see the Poster Submissions page.

 

CppCon 2025 – Call for Volunteers

Volunteer at CppCon 2025!

Are you passionate about C++ and looking to dive deeper into the community? Whether you’re a seasoned developer, a student, or just passionate about technology, we welcome you to join us in bringing this dynamic C++ conference to life. This is your chance to experience the conference without the cost of registration.

What Does Volunteering Involve?
Volunteers play a crucial role in a variety of tasks. Some examples:

  • Assembling registration packets and badges
  • Assisting with speaker and attendee registration
  • Helping with audio/visual needs
  • Making session announcements
  • Managing information desks
  • Helping attendees with questions
  • And more!

Why Volunteer?
Volunteering at CppCon is a unique opportunity to:

  • Attend talks and sessions with no registration cost
  • Meet and interact with speakers and attendees
  • Gain a new perspective on how tech conferences operate
  • Contribute meaningfully to the C++ community

Whether you are attending a conference for the first time or are a seasoned attendee, volunteering offers a fresh and rewarding experience. You’ll have ample time to attend sessions, with at least half your volunteering time spent in them.

Availability:
We appreciate it if you are able to join us for several days, but even if you can only make it for a single day, there are opportunities for you. Volunteers available on the weekend prior to the conference can also assist with important preparatory tasks.

International Volunteers:
For those coming from outside the US, be sure to check our Visa Application Support page to ensure you have all the necessary information.

Volunteer Grants:
This year, we have a limited number of grants available to cover a portion of the traveling and/or lodging expenses for individuals who would otherwise not be able to attend. Apply for financial assistance by filling out the relevant sections of the application form.

Ready to be part of something big? Complete the Volunteer Registration Form by August 1st.

Visit CppCon Volunteers to learn more or contact us directly at volunteer.chair@cppcon.org.

We look forward to having you join our volunteer team and contribute to an amazing CppCon 2025! 🌟

CppCon 2025 Registration is Open

Registration is now open for CppCon 2025, an all-in-person conference being held at the Gaylord Rockies in Aurora, Colorado. (We’ll have some online classes, but conference sessions will be onsite-only, recorded, and posted to the CppCon YouTube channel.)

Maximize your conference experience with the comfort and convenience of staying onsite at the official CppCon hotel.

With your stay at the Gaylord Rockies, receive up to five days of lunch vouchers (one for eacRegistration Deskh night of your stay, up to $30 per lunch) and free high-speed WiFi throughout the conference site. The same high-speed WiFi available in your room is also available throughout the entire conference space.

These benefits are exclusively for attendees staying at the Gaylord Rockies.

Just register for the conference and book a room in your name at the Gaylord Rockies.  See the registration page for details.

Registration details are available on our registration page, but the high points are:

  • Substantial savings are available for Early Bird registrations through June 27th.
  • The conference is onsite, but CppCon Academy will offer both onsite and online classes.
  • We are also offering an Economy registration that doesn’t include the “Meet the Presenters” Banquet, annual tee shirt, CppCache credit, or souvenir that are included in Regular registration.
  • We have a reduced price option available for full-time students.

Visa application support for non-US attendees is available.

As always, we offer support for academics and employees of non-profits and, thanks to the support of the C++ Alliance, child care.