This question shows research effort; it is useful and clear
-2
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
#include<iostream>
using namespace std;
int main()
{
char *a[10]; //an array of ptrs
cin>>a[0]; //Entering first input
cin>>a[1]; //Entering second input
}