What is Blob Datatype in c++?
Answers
Answered by
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