#include using namespace std; int main() { char str[20] = "Interview Mania"; cout << str[10]; cout <<" "<< str; return 0; }
We are just printing the values of first 10 values.
Previous Question Next Question
Your comments will be displayed only after manual approval.