Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ThaniCC

  1. ThaniCC

    deconstructing C++

    cool! the fern, or the pentagon, or a new one?
  2. ThaniCC

    deconstructing C++

    ohhhh.... to make a short story even shorter, i think that you can't do an output or input statement without one of their header files unless you defined every aspect of the output and input statement in your program. and i know I'm not advanced enough to do that, it'd take about 3-4 pages of...
  3. ThaniCC

    deconstructing C++

    now, don't quote me on theis because i'm new to c++ as well, and my system seems to be different than everyone else's (as in i hae a header <lvp\string.h> and it seems no one else does) but i'll take a stab at it... as far as i can tell, you need to have a header file for the program that you...
  4. ThaniCC

    How do i do an if statement , where

    what you do is... if (something is true || something else is true){ do something else; if you do it this way; you can have lots of lines of code in here; } the || is the &quot;or&quot; the && is &quot;and&quot; of course, your < and > are standard, but then you have the != as...
  5. ThaniCC

    Code to clear screen in Visual C++

    the library #include<conio.h> has the function clrscr() which is supposed to clear the screen. also helpful, in the same library, is the clreol() function, which clears the line, starting at the current cursor position. i don't have acess to the <conio.h> library, and when my compiler deems me...
  6. ThaniCC

    Code to clear screen in Visual C++

    heyyy... i thought that system(&quot;CLS&quot;) took a header file... #include<stdlib.h> may just be my compiler that deems it necessary, but hey, thought that i'd jump in ~Thani

Part and Inventory Search

Back
Top