Dag allemaal,
ik heb het volgende:
Maar nog steeds vloept de consolse verise direct weg.
Hoe is dit eenvoudig op te lossen?
ALvast enorm bedankt!!
Niels
ik heb het volgende:
Code:
#include "stdafx.h"
#include <iostream>
using std::cout;
using std::endl;
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
char *word = "again";
cout <<"Value of word is:"<<word<<endl
<<"Value of static_cast <void *>()word is:"
<<static_cast<void *>(word)<<endl;
//getch();
//sleep(20);
system("pauze");
return 0;
}
Maar nog steeds vloept de consolse verise direct weg.
Hoe is dit eenvoudig op te lossen?
ALvast enorm bedankt!!
Niels