fork(1) download
  1. int main() {
  2. size_t Row = 2;
  3. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
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;
   ^~~~~~
stdout
Standard output is empty