what is the value of the basisLetter @ the end?

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();
}
Last edited on
If you can't figure it out by looking at it - then why not run the code and find out??
i've already tried to run the code n i still do not get it. Can someone please help me?
Last edited on
Topic archived. No new replies allowed.