hi guys i want to achieve something like this :
in header file :
#pragma once
class wef
{
private:
int a[];
void setI();
};
and the code file will be like this:
#include "wef.h"
void wef::setI()
{
a = {1,2,3};
}
could you please help me with that?