Author Topic: i wrote this program but it doesnt work  (Read 3000 times)

Offline jarrybarry

  • Single posting newcomer
  • *
  • Posts: 3
i wrote this program but it doesnt work
« 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;}
    }

}

Offline blauzahn

  • Almost regular
  • **
  • Posts: 153
Re: i wrote this program but it doesnt work
« Reply #1 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


Thank you.

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: i wrote this program but it doesnt work
« Reply #2 on: September 17, 2017, 10:17:40 pm »
Topic locked because it violates our forum rules.