#ifndef SET_H_INCLUDED
#define SET_H_INCLUDED



class Set{
 
public:
       int m_Set[9];
       int up;
       Set(){m_Set[9]={0,};up=0;} //얘가 문제입니다..
       
       bool insert(int num)//입력받은 수를 m_Set[up++]에 저장시킴 
       {
            m_Set[up++]=num;
       }

};
#endif 
==================헤더파일=================

#include <iostream>
#include \"Set.h\"
#include <conio.h>
using namespace std;

int main(){
    
    Set Seta;
    
    Seta.insert(5);
    Seta.insert(6);
    
    cout<<Seta.m_Set[0]<<endl;
    cout<<Seta.m_Set[1]<<endl;
    cout<<Seta.up<<endl;
    
    getch();
    return 0;
}
    

11  expected primary-expression before \'{\' token 
11  expected `;\' before \'{\' token 
    
클래스 생성자 쪽에서 에러나는데, 한번 m_Set[9]={0,};을 지우고 실행해주고 다시 넣고 실행시키면 실행됩니다. 
다시 확인해보니... m_Set[9]={0,};을 넣던 안넣던 m_Set 배열은 초기화가 안되네요..
m_Set[9]배열을 시작할때 0으로 몽땅초기화 시키고 시작하고싶은데 우찌해야하나요