Stosowanie tablic – program 3 -> strlen()

#include <iostream>
#include <string.h>

using namespace std;

int main()
{
#define max 20
char napis[max+1];
cout<<“Podaj napis: “;
cin>>napis;
cout<<“twoj napis to: ” <<napis<<endl<<endl;

int dl=strlen(napis);

for(int i=0;i<dl;i++)
{
cout<<napis[i]<<” “;
}
}