Example #1
0
void main()
{
	
	char aa[]="We are happy.";

	for(int j=0;j<strlen(aa);j++)
	{
		cout << aa[j] ;
	}
	cout<<endl;

	Solution ss;
	ss.ReplaceBlank(aa,20);

	system("pause");
	return ;
}