Which C++ header file(s) are essentially required to be included to run/execute the following C++ source code (Note: Do not include any header file, which is/are not required);
Void main()
{
char TEXT[] = 'SomeThing';
cout<<'Remaining SMS Chars:'
<<160-strlen(TEXT)<< endl;
}
Header file required to execute C++ program are -
(i) iostream.h
(ii) string.h