Hello,
I am tring to schedual a vb script with at.exe command but the task is not executed. I did not see any errors in the SchedLgU.txt file (the log file). Any ideas?
Thanks!
I have 2 hpp files, each one includes a class.
each of this class has a pointer to the other, how can I make each one of them recognize the other ? thanks.
I do'nt know if it is the right place where i can ask my question but:
I am tring to run the Clock.exe application from Win NT on my pressonal computer which runs on Win 98 OS, but the Clock does'nt run.
any idea why is it happening...
Thanks.
I want to run a program several times , for example some thing like that:
for i=1 to 200
run program input${i}.txt $i > out$(i+1).txt
done
(i is an argument to the program)
how do i write it correctly?
thanks
I want to run a program several times , for example some thing like that:
for i=1 to 200
run program > out.txt
done
how do i write it correctly?
thanks
I wrote an "heavy" program which writes its memory contant into the disk once in a while. the file on the disk can reach to 14 giga if the input file is very big. the problem is that in that case (when input file is very big) the program stops when the file size is about 14 giga. i am...
I am trying to delete an array which every element in it is a red-black tree.
when i tring to delete one of the red-black tree object which is an element in the array i get an segmentation fault which appears only when i run it under windows and not unix.
how can i fix it?
Thanks.
Is it possible to declare a vector (from stl library) that every element in it is a vector too:
typedef vector <int> Family;
vector<Family> FamiliesVector;
thanks.
i have a program that i'm runing on diffrent kind of inputs.
it runs o.k with small inputs, but when i give it large input the system "kills" the program.
what could be the reasons and is there any way of printing the error, because debugging the program with huge inputs is very...
I use the <vector> data structure from std.
the program is compiled without no errors, but when i run it with an input i get -Segmentation fault (core dumped).
i run it with debugger and descovered that in one point when i come to the line: MyVector.push_back(NULL);
the program gives me an error...
i want to creat a static instance of class- meaning an object that can be shared by all the other classes, i made
a new field in my class t:
static t* MyInstance;
and a function:
static t* instance()
{
if(MyInstance==NULL)
{
MyInstance=new t();
}
return MyInstance;
}
from the...
I need to decalare a private field in a class that will be of type vector (from stl library) how do i do it?
the daclaration:
class goo{
vector <class RBTree*> t;
public:
...
}
is not working...
thanks in advance.
I have an array that i allocated (using new operator) and i need an option to reallocate it if the actual size is bigger then i originally alocated it.
what operator should i use? (i know there is realloc in c)
thanks in advance
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.