Friday 6 December 2019

c++ - What are Aggregates and PODs and how/why are they special?

This FAQ is about Aggregates and PODs and covers the following material:




  • What are Aggregates?

  • What are PODs (Plain Old Data)?

  • How are they related?

  • How and why are they special?

  • What changes for C++11?


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...