Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
~944 People Reached
Favorite Tags
Member Avatar for laehc

The obvious way to compile a while-loop is with a conditional branch at the start and an unconditional branch at the end to loop back. Suppose the condition is A>B, then a conditional branch at the end testing A<=B will fall through when the loop is done, instead of jumping …

Member Avatar for laehc
0
146
Member Avatar for wateen1

can anyone plz solve this truth table for me. i shall be thank ful to you. Question: Prove right hand side equal to left hand site by using truth table NOTE: Fill the given table and make sure the sequence of input remains same as it is given in the …

Member Avatar for laehc
-1
106
Member Avatar for laehc

I can't get anything useful from GDB 6.8 (GNU debugger) on a program compiled with gfortran. I compiled testprog.exe with gfortran using the flags -g and -o (and no other flags) with gcc version 4.5.0. It runs OK, I tried using GDB with it to learn about GDB, but without …

0
74
Member Avatar for liujanet

I am new to pseudocode and completely computer science idiot ! need help urgently for answers for following questions: 1.) Design an algorithm for finding all the factors of apositive integer. For example, in the case of the integer 12, your algorithm should report the values 1,2,3,4,6, and 12. 2.) …

Member Avatar for Truthful
0
292
Member Avatar for scuzzo

I need help in analyzing loop structures. I am a student and need to know this for a class. In my first example here: for (int i=1;i<=n;i++) for (int j=1;j<=n;j++) I need to figure out how to analyze that this loop runs n^2 times. (This was an example given in …

Member Avatar for laehc
0
116
Member Avatar for laehc

I recently unrolled an insertion sort and on 60 items it was twice as slow as the looped version. I'm guessing that's because it was too big for the instruction cache, being 1032 KB. First, does that seem a likely explanation? If so, to avoid that problem, do I just …

Member Avatar for laehc
0
146
Member Avatar for S.A.H

Hello every body,, I want you to give me some useful [B][U]resources [/U][/B]about the topic "Sorting in Linear Time" .. E-books , papers,web Sites.....etc. because I will make a presentation about it .. and I need your advices ,what are the important things in the "Sorting in Linear Time" that …

Member Avatar for laehc
0
64