C++29

PHOTO EMBED

Sat Sep 17 2022 11:59:10 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
int main()
{
  int a = 5, b = 10, c = 15;
  int *arr[ ] = {&a, &b, &c};
  cout << arr[1];
  return 0;
}
content_copyCOPY