{ const Int_t n = 2; Char_t words[n][256] = {"one","two"}; TFile *fout = new TFile("chartest.root","recreate"); TTree *test = new TTree("chartest","char test"); test->Branch("n",&n,"n/I"); test->Branch("words",words,"words[n]/C"); for(int i=0; iFill(); test->Write(); }