Science, asked by Abhinv9100, 1 year ago

What is Blob Datatype in c++?

Answers

Answered by AgarwalSahb
0

A "blob" is a common acronym for "Binary Large Object", which means it's an object holding a large amount of binary data. Some languages has native blob types, but C++ doesn't. Never the less, creating a blob is simple enough - you just create an array of bytes.

Similar questions