Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While programming I have come to an unusual error. When I initialize an integer in a loop, sometimes it says that the expression is not valid, but at times it accepts it. This is my code which gives error:

int pow(int x,int n);
int main()
{
    int x,n,result;
    printf("Enter a number:\n");
    scanf("%d",&x);
    printf("Enter its power:\n");
    scanf("%d",&n);
    result=pow(x,n);
    printf("Result is %d\n",result);
    getch();
    return 0;
}
int pow(int x,int n)
{   
    for(int i=1;i<n;i++)   //<-- here it says that declaration syntax error
    x=x*i;
    return x;
}

While when i change it like this :

int pow(int x,int n)
{   
    int i;
    for(i=1;i<n;i++)  
    x=x*i;
    return x;
}
share|improve this question

4 Answers

up vote 2 down vote accepted

C89 and earlier versions only support declaration statements at the head of a block (IOW, the only thing that can appear between an opening { and a declaration is another declaration):

/* C89 and earlier */
int main(void)
{
  int x;                      /* this is legal */
  ...
  for (x = 0; x < 10; x++)
  {
    int i;                    /* so is this */
    printf("x = %d\n", x);
    int j = 2*x;              /* ILLEGAL */
  }
  int y;                      /* ILLEGAL */
  ...
}

With C99, declaration statements can appear pretty much anywhere, including control expressions (with the caveat that something must be declared before it is used):

// C99 and later, C++
int main(void)
{
  int x;                       // same as before
  ...
  for (int i = 0; i < 10; i++) // supported as of C99
  {
    printf("i = %d\n", i);
    int j = 2 * i;             // supported as of C99
  }
  int y;                       // supported as of C99
}

Turbo C predates the C99 standard, so if you want to write code like in the second example, you will need to use a more up-to-date compiler.

share|improve this answer
Thanx.Really helped – Fahad Uddin Aug 28 '10 at 7:35

In C, before C99, you need to declare your variables before your loop. In C++, and now in C99, you can declare them within the loop as you try here. The different results you are getting may be because you are sometimes compiling as C++, and sometimes compiling as C.

You could try to make sure you are always compiling your code as C++, or if you're using GCC or Clang, compile with the --std=c99 flag. C99 is unsupported by MSVC, so you will either need to use C++ or move the declaration outside of the loop if you're using MSVC.

share|improve this answer
I use a turbo c compiler – Fahad Uddin Aug 27 '10 at 21:02
@fahad Sorry, I can't help you with the specifics of Turbo C. As I said, if you want the first example to work, make sure you set it to C++ or C99 mode (probably C++, I don't think Turbo C supports C99). – Brian Campbell Aug 28 '10 at 2:46
Thanks a lot :) I will find Ming GW for that . – Fahad Uddin Aug 28 '10 at 7:08

It sounds like you have a C89 compiler (rather than C99 compiler).

In C89, you are only allowed to declare variables at the beginning of a function. You are simply not allowed to declare variables elsewhere in a function, including in the initialization part of a for statement. That's why the second syntax works and the first fails.

The second syntax is valid for C99 and C++ but not for C89.

share|improve this answer
but at times it works .Why does that happens? – Fahad Uddin Aug 27 '10 at 20:56
Can you add to your question a code snippet where you declare the variable inside the for statement and it works? Without that to compare the non-working version to, there's no way to tell you what the difference is. – Tyler McHenry Aug 27 '10 at 21:01
If you see the code i have done that – Fahad Uddin Aug 27 '10 at 21:05
You posted one piece of code where you declare it inside the for statement, and it doesn't work. Then you have another piece of code where you declare it before the for statement and it does work. The reason that they produce different results is because they declare the variable in different places. One of them declares the variable in a legal place, and the other declares the variable in an illegal place. Much like anything else in programming, the times when it works are the times when you write it the correct, legal way. – Tyler McHenry Aug 27 '10 at 21:07

What C compiler are you using?

Older versions of C prior to C99 require all variable declarations be made at the top of a code block.

share|improve this answer
the turbo c compiler – Fahad Uddin Aug 27 '10 at 20:55
which version of turbo c? If I remember anything from college in India, it's that the turbo C and borland C compilers we had were older than the professors. chances are that you're facing the same issue. – bluesmoon Aug 27 '10 at 20:58
The last release of Borland Turbo C was in 1989 (twenty-one years ago!). That would explain why it doesn't support features instituted a decade after it was created. I would strongly suggest you get a newer compiler, for many reasons. MinGW is an excellent, free, modern C99 compiler for windows based on gcc. Microsoft VC++ Express Edition is also free and modern, but is only a C89 compiler when it is working with C code. – Tyler McHenry Aug 27 '10 at 20:59
@bluesmoon:yes it its turbo c 3.0 compiler(borland) – Fahad Uddin Aug 27 '10 at 21:03
1  
turbo C 3.0 may not even be C89 compliant, but IIRC it was closer than any MS compiler in the same era as Borland actually participated or at least paid attention to the standards process. It took longer for MS to join that party... – RBerteig Aug 27 '10 at 21:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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