how do i make the textbox automatically scroll down all the way to the bottom?
thanx in advance
how do i make the textbox automatically scroll down all the way to the bottom?
thanx in advance
Above code will print
5
45
345
I think using Shift operator will be a easier way for you ..
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);
}
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;
}
U can use fflush(stdin) also ..