Untitled

 avatar
unknown
plain_text
a year ago
168 B
3
Indexable
#include<iostream>
using namespace std;

struct C{
    private:
    int mem;

    C(int value){
        mem = value;
    }
};

int main(){
    return 0;
}
Editor is loading...
Leave a Comment