#include <iostream>


void MyFunc(void)

{
     std::cout<<"MyFunc(void)  GOOD"<<std::endl;
     }
    
     void MyFunc(char c)
     {
          std::cout<<"MyFunc(char c) called"<<std::endl;
          }
         
          void MyFunc(int a, int b)
          {
               std::cout<<"MyFunc(int a, int b) called"<<std::endl;
               }
              
               int main(void)
               {
                   MyFunc();
                   return 0;        
                   }
뭐가문제일까요 콘솔창유지하는법좀알려주세요
ㅜㅜ