Cuando lo intento compilar me pone: [ERROR] Id returned 1 exit denied
ayuda
#include <iostream>
using namespace std;
int main()
{
char c [4];
c[0] = 'H';
c[1] = 'o';
c[2] = 'l';
c[3] = 'a';
for (int i=0; i<4; i++)
{
cout << c;
}
cout<<endl;
cin.get();
return 0;
}
ayuda
#include <iostream>
using namespace std;
int main()
{
char c [4];
c[0] = 'H';
c[1] = 'o';
c[2] = 'l';
c[3] = 'a';
for (int i=0; i<4; i++)
{
cout << c;
}
cout<<endl;
cin.get();
return 0;
}