- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 7
- Posts with Downvotes
- 4
- Downvoting Members
- 4
- Interests
- C++, DBMS, Digital Signal Processing, Digital Electronics
7 Posted Topics
Re: 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 … | |
Re: 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"; … | |
Re: 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 … | |
if i want user to enter a single char in a variable...then how to restrict him/her from typing more than 1 character.....?? | |
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...!! | |
Re: where is the code...?? | |
can anyone please tell how to read an image in turbo c++ and display it....?? |
The End.