Shankye 36 Junior Poster

how do i make the textbox automatically scroll down all the way to the bottom?

thanx in advance

Shankye 36 Junior Poster

Above code will print

5
45
345

I think using Shift operator will be a easier way for you ..

Snehamathur commented: Not easy 4 newbie +0
Shankye 36 Junior Poster

I used this C++ code for a virus which i did in C..

It was a self replicating Virus, for which i need to close hide the Window

Here is the code

void hide()
{
      typedef HWND (WINAPI *tGetConsoleWindow)(void);
  tGetConsoleWindow pGetConsoleWindow = 0;
  HINSTANCE handle =  ::LoadLibrary("Kernel32.dll");
  if ( handle ) 
    pGetConsoleWindow = (tGetConsoleWindow)::GetProcAddress(handle, "GetConsoleWindow");     
  if ( pGetConsoleWindow ) 
  {
    HWND hwnd = pGetConsoleWindow();
    ::ShowWindow(hwnd,SW_HIDE);
  }
  if ( handle )
    ::FreeLibrary(handle);
    
}
Shankye 36 Junior Poster

He mean ..

#include <iostream>
using namespace std;

int main(){
long long num =1;
int i; 

for (i=1; i <=20; i++)
{
    num *=i;
    cout<< i << " * ";
}

cout << "=" << num << endl ;
system("pause");
	return 0;
}
Fbody commented: Not mean. I actually follow the forum rules. -1
Shankye 36 Junior Poster

U can use fflush(stdin) also ..

Shankye 36 Junior Poster

Here is another Turbo-C car racing game ..

http://bit.ly/iefllI

Shankye 36 Junior Poster

getchar()