vote up 1 vote down star

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???

flag
1  
Edit your post. – Prasoon Oct 19 at 5:13
1  
duplicate question stackoverflow.com/questions/1586981/… – Bruce Oct 19 at 5:16
1  
Duplicated as stackoverflow.com/questions/1586981/…. – pierr Oct 19 at 5:17
2  
It's good equitette to write a title which suggests what the problem is about. For example, the title of this should be "NOT declared in this scope" error in C++." – Andrew Shepherd Oct 19 at 5:18
1  
Gotta love it when the "duplicate" comments are duplicated ;) – ThisSuitIsBlackNot Oct 19 at 5:24
show 3 more comments

closed as exact duplicate by sth, Chris Lutz, Michael Petrotta, Greg Hewgill, Pavel Minaev Oct 19 at 5:19

1 Answer

vote up 1 vote down

You haven't declared x.

Try adding this as the first line in main:

int x;
link|flag
i did, but it comes out with more errors – Jes Oct 19 at 5:30
2  
Then you need to fix those as well. – sbi Oct 19 at 8:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.