Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
15% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
7
Posts with Downvotes
4
Downvoting Members
4
5 Commented Posts
0 Endorsements
Ranked #4K
~9K People Reached
Interests
C++, DBMS, Digital Signal Processing, Digital Electronics
Favorite Forums
Favorite Tags

7 Posted Topics

Member Avatar for maHvic

Try dis..... [code] #include<iostream.h> #include<malloc.h> class d2b { public: int dec2bin(int *p) { int a,b,c=1,d=0; while (*p!=0) { a = *p%2; b = a * c; d = d + b; *p = *p/2; c = c * 10; } return d; } }; void main() { d2b db; int …

Member Avatar for AndrisP
0
1K
Member Avatar for Ershad K

use getch() function this function does not echo anything on output string when you type.... put this function in loop and cout '*' after you use getch() in your loop. i am enclosing a sample....try it out.... #include<iostream.h> #include<conio.h> void main() { int c=0; char pass[6]; char r[6] = "passwd"; …

Member Avatar for Ershad K
1
7K
Member Avatar for giodoli93

Try to generate a fibonacci series.....(range should be entered by user itself) fibonacci series is..... 0 1 1 2 3 5 8...... i.e., initially 0 and 1 are printed and the next terms are the sum of previous two..... try to solve it out...if u want, i'll provide you with …

Member Avatar for giodoli93
0
168
Member Avatar for manish.ranjan

if i want user to enter a single char in a variable...then how to restrict him/her from typing more than 1 character.....??

Member Avatar for manish.ranjan
0
76
Member Avatar for manish.ranjan

How to connect c++ and oracle ? i am working on a project Multiplex management system using c++.... but it really tedious task to store and handle all data in file... please help me with the procedure...!!

Member Avatar for manish.ranjan
0
84
Member Avatar for ganno
Member Avatar for manish.ranjan
Member Avatar for jwenting
-2
77

The End.