the code like this:
int main()
{
int intArray[10000][10000]; //I got no problem,
//but I got problem in run time
//now I think the space demand
//is too large.
//now the question...
hi all,
I have finished a java program, now someone give me an executable jar file with source code, and want integrate this jar file in my java program.
My Idea is I write a JDialog Object as ProgramChooser, which has some some radio button. When someone choosed an item and clicke OK button...
please take a look of this program, how can this be explained?
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
const int i=0;
int * j=(int*)&i;
const int k=0;
int * u=(int*)&k;
*j+=1;
*u+=1;
cout<<i<<" "<<*j<<endl;
cout<<&i<<" "<<j<<endl...
I want know, whether it is possible to invoke an exe file in a cpp file.
For example,
int main()
{
// some code...
// here I want invoke WindowsMediaPlayer
// or some other MP3 player
// and some code continue...
return 0;
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.