C++36

PHOTO EMBED

Sun Sep 18 2022 08:36:20 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include<iostream>
using namespace std;
int main(){
  int *ptr;
  *ptr = 6;
  cout << *ptr << endl;
  return 0;
}
content_copyCOPY