c++23

PHOTO EMBED

Sat Sep 17 2022 08:04:51 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
enum  cat 
{
  temp = 6
};
int main()
{
  int age = 12;
  age /= temp;
  cout << "If you were cat, you would be " << age << endl;
  return 0;
}
content_copyCOPY