Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: jarrybarry on September 17, 2017, 07:30:51 am

Title: i wrote this program but it doesnt work
Post by: jarrybarry on September 17, 2017, 07:30:51 am
i'm pretty sure this should work but its not

#include <stdio.h>

main()
{

int num;
int i;


    printf(" How many number do you want to see");
    scanf(" %d", &num);

    for(i=1; i<10; i++);
    {
        printf("Counting up....%d\n\n" ,i);
            if (i== num)
                {break;}
    }

}
Title: Re: i wrote this program but it doesnt work
Post by: blauzahn on September 17, 2017, 09:26:22 am
Please be aware, that this site is not intended to be a general programming help.


http://forums.codeblocks.org/index.php/topic,9996.0.html
 (http://forums.codeblocks.org/index.php/topic,9996.0.html)

Thank you.
Title: Re: i wrote this program but it doesnt work
Post by: Jenna on September 17, 2017, 10:17:40 pm
Topic locked because it violates our forum rules.