6 ms·
Doesn't work for basic C++: #include <stdio.h> #include <stdlib.h> #include <iostream> int main() { int someNum = 52; printf("Whale exists that do
by entelechy0 8y ago
Doesn't work for basic C++:
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
int main() {
int someNum = 52;
printf("Whale exists that does %d hz\n", someNum);
std::cout << "Out";
return 0;
}
/var/obfuscator/code_624952c3a4d4ebc7df41c830d3572272.c:3:10: fatal error: 'iostream' file not found
Stopping due to parsing error of severity Fatal
-----
Removing the include for iostream yields:
-----
/var/obfuscator/code_c963503bab4beb00483856ecd675548d.c:7:9: error: expected expression
Stopping due to parsing error of severity Error
- dom96 8y agoYou're compiling it in C mode. Switch to C++ using the dropdown.