Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
~3K People Reached
About Me

like messing with computer

Favorite Tags

11 Posted Topics

Member Avatar for profyou

My pc has two hard disk drives. The primary hard disk has become corrupted(or it has got some virus so that pc turns off abruptly). I have win 98 installed in the slave hard disk so i can run win 98 when i disconnect the primary HD. Is there a …

Member Avatar for Rik_
0
223
Member Avatar for Ian Woodgate

You can set up a while loop which will iterate 5 times. Each time you will extract the last digit by: **d=n%10** ,now you can check whether it is 0 or odd or even and then divide the number by 10**(n=n/10)** which will remove the last digit so each time …

Member Avatar for profyou
0
135
Member Avatar for profyou

I want to access a remote VB application(located on server) on a client machine via HTML web page. Is it possible? Is there any other way? Actually initially they wanted an VB application to see punch details.Now they want to integrate it on local intranet so that user can launch …

Member Avatar for Troy III
0
127
Member Avatar for profyou

i have been confused lately regarding where to concentrate... java or c++ or Algorithms & data structures or ........(there are still more languages) whenever i concentrate on java i tend to forget c++ or various algorithms or assembly( i have learned 8086/8088 programming). java is very large...core java......file io....swing..servlets....enterprise java...and …

Member Avatar for jackbauer24
0
288
Member Avatar for profyou

when will the expression (std::cin>>buff) evaluate to false(0)? I have been trying to take input until empty string is entered(simply press enter) ? Is there any other way to achieve this?

Member Avatar for deceptikon
0
181
Member Avatar for Forswear

It appears that you are using variables x,v,z,etc before assigning valid values to them. You should compute num1,num2,etc only after the scanf(...) statement..

Member Avatar for <ccg>
0
491
Member Avatar for janice91

you just need to change your sumOfDigits(int) function: public static void sumOfDigits(int x) { int sum=0; while(x>0) { sum+=x%10; x/=10; } return sum; }

Member Avatar for Taywin
0
140
Member Avatar for ITHope

the else clause at line 35 is redundant with that at line at 57 .try removing lines 35 to 38.

Member Avatar for NormR1
0
153
Member Avatar for Trypanosoma

although no very technical but i think myprog >myfile.doc would be more correct since the calculation is to be posted onto something like <MSWord file>

Member Avatar for Ancient Dragon
0
688
Member Avatar for profyou
Member Avatar for canwilf
0
87
Member Avatar for DynamicMember

add <code>#include<conio.h></code> at the begging and add <code>getch();</code> just before the main's closing brace

Member Avatar for profyou
1
112

The End.