int main() { size_t Row = 2; }
Standard input is empty
prog.cpp: In function ‘int main()’:
prog.cpp:2:3: error: ‘size_t’ was not declared in this scope
size_t Row = 2;
^~~~~~
prog.cpp:2:3: note: ‘size_t’ is defined in header ‘<cstddef>’; did you forget to ‘#include <cstddef>’?
+#include <cstddef>
int main() {
size_t Row = 2;
^~~~~~
Standard output is empty