#include <iostream>

int main() {
    char s[] = "nemyx not found";
    void * p;
    p = (void *)0xdeadbeef;

    std::cout << "Invalid memory at address " << std::showbase << std::hex << p << ", error: " << s << std:: endl;
	return 0;
}