Possible Duplicate:
Help, im new to C++ i need some advice…
Im trying to compile this code but i just cant get it right... here is the code
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout << "Input a Sentence: ";
cin >> x;
{
char* string = " " << x;
int letter_count[26];
// Initialization
for(int i=0; i<26; letter_count[i++]=0);
// Counting the number of letters
for(int i = 0; string[i] != '\0'; i++) {
if(string[i] > 64 && string[i] < 91)
letter_count[string[i]-65]++;
else if (string[i] > 96 && string[i] < 123)
letter_count[string[i]-97]++;
else if (string[i] == '.')
break;
}
// Show the result
for(int i=0; i < 26; i++)
if (letter_count[i] != 0)
std::cout << letter_count[i] << " "<< char(i+97) << std::endl;
}
return 0;
}
and when i compile it in emacs, it gives me this
:12: error: `x' was not declared in this scope
help on how to get this program running???
