Search:

Type: Posts; User: BrandNewDeipz

Search: Search took 0.01 seconds.

  1. Oh, thank you so much! I got it now! :D

    Oh, thank you so much! I got it now! :D
  2. Oh, I see. Ok, I'll try it now.

    Oh, I see. Ok, I'll try it now.
  3. I'm supposed to program in C. :(

    I'm supposed to program in C. :(
  4. I can't use ANSI escape sequences and ncurses! HELP!

    I'm trying to display a colored text but when I use the ANSI escape sequences, I get this error: unrecognized character escape sequence.
    I'm using Visual C++ 6.0. Is this kind of error normal or did...
  5. Oh. I see. I said it was reliable because it was...

    Oh. I see. I said it was reliable because it was recommended by our teacher. Thank you for the tips and info.
  6. #include #include main() { ...

    #include<stdio.h>
    #include<conio.h>
    main()
    {
    textcolor(RED);
    cprintf("C programming");
    getch();
    return 0;
    }
    warning C4013: 'textcolor' undefined; assuming extern...
  7. How to setup visual c++ 6.0 to compile and run a C program?

    I'm trying to build and run a C program in Visual C++ 6.0 but, even if my code is correct (I copy-pasted it from a reliable source), I still get errors. I remember that my teacher instructed us to...
  8. Replies
    4
    Views
    1,761

    But I'm using Visual Studio 2005 Express Edition....

    But I'm using Visual Studio 2005 Express Edition. :(
  9. Replies
    4
    Views
    1,761

    Converting decimal to binary

    Hello. I'm encountering some errors in my code. Please help.



    void binary(int number)
    {
    int i, count;
    for(count = 0; number > 0; count++)
    {
    number /= 2;
Results 1 to 9 of 10