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

I found a site with some complicated C puzzles. Right now I'm dealing with this:

The following is a piece of C code, whose intention was to print a minus sign 20 times. But you can notice that, it doesn't work.

#include <stdio.h>
int main()
{
    int i;
    int n = 20;
    for( i = 0; i < n; i-- )
        printf("-");
    return 0;
}

Well fixing the above code is straight-forward. To make the problem interesting, you have to fix the above code, by changing exactly one character. There are three known solutions. See if you can get all those three.

I cannot figure out how to solve. I know that it can be fixed by changing -- to ++, but I can't figure out what single character to change to make it work.

share|improve this question
1  
I don't think this is "Too localized". While it may not be too useful in the real world, it's an interesting puzzle. – Javier Badia Mar 23 '10 at 20:43
BTW, we're still missing one solution. – Javier Badia Mar 23 '10 at 20:45
@Felix: Well, of course we now don't. I wrote that when we were. – Javier Badia Mar 23 '10 at 21:06

closed as not constructive by user414076, Andrew Barber, jonsca, animuson, Dennis Jan 2 '12 at 3:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 33 down vote accepted

Here is one solution:

for( i = 0; -i < n; i-- )
        printf("-");

Here is a second one, thanks to Mark for helping me!

for( i = 0; i + n; i-- )
    printf("-");

And Mark also had the third one which is

for( i = 0; i < n; n-- )
    printf("-");
share|improve this answer
1  
The second one would not work. You will get -20, -21, -22,.... But i + n should do it. – Felix Kling Mar 23 '10 at 20:41
Indeed, I just noticed it. – Gab Royer Mar 23 '10 at 20:41
4  
I think the second one needs i+n rather than i-n and you have it. Nice. – Mark Wilkins Mar 23 '10 at 20:43
You're right! I was sure it was related to this somehow but had abandoned hope a bit early in the process :P – Gab Royer Mar 23 '10 at 20:47
1  
That second one is awesome. Thank you. Thanks to Mark too, who apparently contributed a lot. – Javier Badia Mar 23 '10 at 20:50

Change i-- to n-- is another.

Okay - Gab made the fix, so I removed the other solution. He wins!

share|improve this answer
Didn't think of this one! – Gab Royer Mar 23 '10 at 20:36
@Gab: Heh - I'm glad since you beat me by a minute with yours :) – Mark Wilkins Mar 23 '10 at 20:39
I accepted the other answer because it includes all three solutions, but thanks a lot. – Javier Badia Mar 23 '10 at 20:51
@Javier: Good decision. Gab thought of two before I did. Fun problem. – Mark Wilkins Mar 23 '10 at 21:03

Third answer:

for( i = 0; i + n; i-- )  
    printf("-"); 

Thanks to Gab Royer for inspiration.

Explanation: Eventually , i + n will result in -20 + 20 = 0 which is false.

share|improve this answer
changed 2 chars – MonoThreaded Mar 23 '10 at 20:46
Aha, that's clever!! – FrustratedWithFormsDesigner Mar 23 '10 at 20:46
@user294702: I had a copy and paste error, fixed it. – Felix Kling Mar 23 '10 at 20:48
    for( i = 0; i < n; n-- )  
    printf("-");  

Changed i-- to n--

share|improve this answer

Here's one of them, I think:

for( i = 0; i < n; n-- )
share|improve this answer
Nice catch mate – MonoThreaded Mar 23 '10 at 20:38

The comparison in the for loop can be any expression - you can negate i.

for (i = 0; -i < n ; i--)
share|improve this answer

Solution 1

#include <stdio.h>
int main()
{
    int i;
    int n = 20;
    for( i = 0; i < n; n-- ) // Change i-- to n--
        printf("-");
    return 0;
}

Solution 2

#include <stdio.h>
int main()
{
    int i;
    int n = 20;
    for( i = 0; -i < n; i-- ) // Compare to -i
        printf("-");
    return 0;
}

Haven't figured a third.

share|improve this answer

Here is another one:

#include <stdio.h>

int main()
{
    int i;
    int n = -20; //make n negative
    for( i = 0; i < n; i-- ) 
        printf("-");
    return 0;
}
share|improve this answer
4  
This will never run, since 0 > 20. The condition in the loop will never be true. – Javier Badia Jan 8 '11 at 20:27

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