Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
6
Posts with Upvotes
6
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~996 People Reached
Favorite Tags
c++ x 7
c x 3
java x 2
Member Avatar for Manas Kumar Sen

I am using Dev c++ IDE for c and c++. When i run an aplication the running window disappears quickly. What should i do?

Member Avatar for Anonymusius
0
63
Member Avatar for waldis

Hi, Once I had a similar problem when I tried to read a binary file on a pc and I failed, but I was able to read it in Linux (there were actually different versions of the file), so I figured it's a corrupted file, thou the hex dump looked …

Member Avatar for waldis
0
94
Member Avatar for waldis

I'm having difficulties to get the buffer read 10 numbers from a file, then after it's empty read next 10 numbers, and so on till eof is reached. The input file contains several lines of data, with a single integer value on each line. Here is my code (I have …

Member Avatar for waldis
1
121
Member Avatar for waldis

Hi, I'm trying to get the threads synchronized, but the output I get is still wrong: Expected sum: 20000000 Actual sum: 10000000 Do I use synchronized wrong, or do I put it in a wrong place? [code] class TestThread extends Thread { public void run() { for (int i = …

Member Avatar for waldis
0
120
Member Avatar for waldis

We were given a heap sort in a pseudocode: [CODE] ******* HEAP SORT ******* sift(A, l, r) ------------- f <- l s <- 2 * l temp <- A[f] found <- false while not found and s <= r if s < r and A[s-1] < A[s] then s <- …

Member Avatar for iamthwee
0
138
Member Avatar for indianscorpion2

hi,i am srikanth. well i installed microsoft windows xp professional on my computer.the os is was not able to recognize the presence of the speakers(i am using speakers manufactured by mercury inc. ). i don't know the exact sound card on my p.c. here is what i did.i downloaded realtek …

Member Avatar for indianscorpion2
0
94
Member Avatar for waldis

Could anyone look at this and tell me if I got it right? I had to rewrite the following code without GOTOs: [CODE]Y: A B if a GOTO X C if b GOTO Y X: D[/CODE] Here is my solution (I added an additional flag to get it done): [CODE]i=TRUE …

Member Avatar for waldis
0
105
Member Avatar for waldis

Hi, could someone to direct me the right way with this? Here is the problem, which I think I have nailed: before: [CODE] A if c then goto X B if d then goto Y C X: D E Y: F[/CODE] after (in pseudocode): [CODE]A if c then D E …

Member Avatar for waldis
0
261