Search:

Type: Posts; User: aristotle1

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,056

    shell program

    Greetings all,
    I need some help writing a shell script for linux any suggestions or examples would be greatly appreciated. I am primarily concerned with how to interact with the OS because I can do...
  2. Replies
    1
    Views
    1,046

    getting time from the OS

    Greetings,
    I need to access the current time from the operating system for use in a project that I am currently working on. I am using VC6 and have tried the time function in time.h but cannot get...
  3. Replies
    4
    Views
    1,384

    That Worked!!!! I am forever in debted to you my...

    That Worked!!!! I am forever in debted to you my fellow programmer again, Thanxs

    "To make an apple pie from scratch you must first create the Universe"
  4. Replies
    4
    Views
    1,384

    yes, I created it as a Win32 Application and...

    yes, I created it as a Win32 Application and added the c/c++ source file and it even runs fine as long as code it fresh but as soon as I save it and open the .cpp file, it will compile but it gives...
  5. Replies
    4
    Views
    1,384

    Probably a simple problem

    Greetings all i am leaving the world of C/C++ Console and learning Windows applications I am using Visual C/C++ 6.0
    My proplem is ive written a simple Hello World probram (follows) It will compile...
  6. Replies
    1
    Views
    1,398

    easy question?

    greetings all,
    I am trying to figure out how to use graphics mode in VC6.0 assuming this is possible. I wondering if some one could show me the code needed to setbkcolor to blue and draw a red...
  7. Replies
    1
    Views
    1,896

    visual c graphics

    Hello fellow programmers,
    question!! is graphics mode different in visual c or what? I can not get it to work at all I finally got it to compile after modifing the graphics.h header file however it...
  8. Replies
    4
    Views
    6,115

    Unfortunately no, I have conio.h included for...

    Unfortunately no, I have conio.h included for safety sake but still not working Im thinking it has to do with either the internals of my graphics.h or my initgraph statement but I not to sure. Thank...
  9. Replies
    4
    Views
    6,115

    graphics.h link error

    Hello all,
    Im wondering if theres a guru out there that can figure this one out? I must admit I just pulled the last hair out of my head so im going else where? below is the problem

    My code is ...
  10. Replies
    2
    Views
    1,193

    Disregard but thx anyway

    Thanks,
    but shortly after i posted this i found my mistake it was that i put
    semi-colons ";" at the end of my function headers

    adios muchachoes!!
  11. Replies
    2
    Views
    1,193

    compile Error concerning array formal

    Hello fellow programmers,
    i would greatly appreciate some help with the following

    void inum_sort (int array1[], int *num1);

    void
    main (void)
    {
    inum_sort (array1, &num1);
    }
  12. Thread: questions

    by aristotle1
    Replies
    2
    Views
    1,011

    clrscr in visual c++

    if your using visual c++ clrscr is the following

    #include <stdlib.h>

    system ("cls");


    if you using others it should be

    clrscr ();
  13. Replies
    7
    Views
    102,176

    Sticky: clrscr in visual c

    Use
    #include <stdlib.h>

    system ("cls");
  14. Replies
    6
    Views
    1,516

    clrscr in visual c

    Use
    #include <stdlib.h>

    system ("cls");
  15. Replies
    2
    Views
    1,695

    clrscr function in VS 6.0

    Hello all,
    What is the equivalent to clrscr in visual c++ 6.0? I would appreciate some help I tried using
    #include <graphics.h>

    void main (void)
    {
    gclearscreen ();
    }
Results 1 to 15 of 15