To cite the actual C++ standard, ISO/IEC 14882:2017 (C++17), Section 9.3 "Compound statement or block":
9.3 Compound statement or block [stmt.block]
1 So that several statements can be used where one is expected, the compound statement (also, and equivalently, called “block”) is provided.
compound-statement: { statement-seqopt }
there is no difference between the terms of a block and a compound statement in their respective meaning.
You can use both terms interchangeably for a "compound" or sequence of statements (it may even be only one statement; the amount of statements doesn´t matter) starting by a "{
" - opened curly bracket and terminating by a "}
" - closed curly bracket.