what is the value of the latest basisLetter?
#include <iostream>
using namespace std;
int main()
{
char basisLetter= 'a';
for(int rij = 1; rij <=4; rij++)
{
char ch=basisLetter;
for ( int kol=1;kol<=26;kol++)
{ cout << ch;
ch++;
if ( ch >'z')
ch-=26;
}
cout << endl;
basisLetter++;
}
cin.get();
}