Below is what I currently have; I am not sure why I cannot just print the value, incrementally with the below; i.e. 1,2,3.. etc. I have also tried  cout<<count;
 #include <iostream>
    using namespace std;
    int main()
    {char count;
     while(count<=10)
     {
     cout<<"My name is Bill"<<endl;
     cout << "The # is:" <<count<<endl;
     cout << count++;
     }
     }
 
     
    