Forum: C Feb 2nd, 2005 |
| Replies: 3 Views: 2,224 |
Forum: C Feb 1st, 2005 |
| Replies: 3 Views: 2,224 can someone please explain to me
1) the difference between getline and gets().
2) why sometimes when getline is used along with some other cin statements it skips some of the cin statements.
... |
Forum: C++ Jan 5th, 2005 |
| Replies: 6 Views: 3,258 #include<iostream.h>
float my_sum(int r);
void main()
{
int r;
cout<<"Enter the radius";
cin>>r;
my_sum(r);
} |
Forum: C++ Dec 12th, 2004 |
| Replies: 4 Views: 4,868 >> won't read white spaces. with gets u can. |
Forum: C++ Nov 25th, 2004 |
| Replies: 2 Views: 2,804 |
Forum: C++ Nov 24th, 2004 |
| Replies: 2 Views: 2,804 can some please tell how can u hide whatever u are typing when typing in c++ exe. file? |
Forum: C Nov 21st, 2004 |
| Replies: 5 Views: 4,197 u can have unlimited no. its not just 1 row. it is as many as u want i guess. |
Forum: C Nov 16th, 2004 |
| Replies: 7 Views: 2,111 what????????????????????????????? |
Forum: C++ Nov 16th, 2004 |
| Replies: 17 Views: 4,148 sorry about it not working. it will work if u initialise the variables outside the switchcase. for eg:- initialise location outside sswitchcase - in the main function itself. and never mind that... |
Forum: C++ Nov 10th, 2004 |
| Replies: 17 Views: 4,148 here is an example for u!
#include <iostream.h>
#include <fstream.h>
#include <string.h>
#include <iomanip.h>
#include <conio.h>
class phoneBook{
char name[20],phno[6]; |
Forum: C++ Nov 7th, 2004 |
| Replies: 4 Views: 2,262 can u please explain it to me?
Tresa |
Forum: C++ Nov 6th, 2004 |
| Replies: 3 Views: 2,188 thank u so much chainsaw.
Tresa |
Forum: C++ Nov 6th, 2004 |
| Replies: 4 Views: 2,262 hai
can anyone please tell me whether it is possible to make graphics work in borland c++? thanks
Tresa |
Forum: C++ Nov 5th, 2004 |
| Replies: 3 Views: 2,188 hai
can anyone please help me find the error in my program? when i try to compile it says case bypasses initialisation of local variable. i can't figure out the mistake. i am sitting with this for... |