C++35

PHOTO EMBED

Sun Sep 18 2022 08:31:01 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

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