Forum: Community Introductions
Apr 25th, 2006, 3:19 AM
|
|
Replies: 10
Views: 339
|
Forum: C++
Apr 23rd, 2006, 10:10 AM
|
|
Replies: 13
Views: 357
|
Forum: C++
Apr 23rd, 2006, 10:03 AM
|
|
Replies: 13
Views: 357
|
Forum: C++
Apr 23rd, 2006, 9:54 AM
|
|
Replies: 13
Views: 357
Constructor problem
I wrote the following program:
#include<iostream>
using namespace std;
class add
{
public:
add();
add(int,int);
};
int add::add()
|
Forum: C++
Apr 14th, 2006, 7:47 AM
|
|
Replies: 18
Views: 473
|
Forum: C++
Apr 14th, 2006, 7:46 AM
|
|
Replies: 18
Views: 473
|
Forum: C++
Apr 14th, 2006, 7:14 AM
|
|
Replies: 18
Views: 473
|
Forum: C++
Apr 14th, 2006, 5:47 AM
|
|
Replies: 18
Views: 473
It might appear completely unrelated to you...
It might appear completely unrelated to you Grumpy, but I am new to namespaces. So I was wondering why you did not use namespace std. Now I got the point. Using std:: exempts one from bringingwhole...
|
Forum: C++
Apr 14th, 2006, 3:03 AM
|
|
Replies: 18
Views: 473
|
Forum: C++
Apr 10th, 2006, 10:08 AM
|
|
Replies: 9
Views: 260
|
Forum: C++
Apr 10th, 2006, 5:38 AM
|
|
Replies: 9
Views: 260
|
Forum: Coder's Corner Lounge
Mar 31st, 2006, 2:51 AM
|
|
Replies: 63
Views: 2,787
|
Forum: C++
Mar 19th, 2006, 8:27 AM
|
|
Replies: 19
Views: 625
|
Forum: C++
Mar 18th, 2006, 8:50 AM
|
|
Replies: 19
Views: 625
|
Forum: C++
Mar 14th, 2006, 11:46 PM
|
|
Replies: 19
Views: 625
reversing a string
i tried to reverse a string using arrays and for loops i the following program
[code]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j;
cout<<"enter the array";
char...
|
Forum: C++
Mar 7th, 2006, 6:35 AM
|
|
Replies: 1
Views: 182
|
Forum: C++
Mar 3rd, 2006, 6:15 AM
|
|
Replies: 16
Views: 615
|
Forum: C++
Mar 2nd, 2006, 11:30 AM
|
|
Replies: 16
Views: 615
which is the best compiler for c++
which is the best compiler for c++. i have brought a new laptop and dont know which compiler to install in it. whether borland or gcc or any other. id be thankful for any ideas on this.
|
Forum: C++
Feb 17th, 2006, 9:08 AM
|
|
Replies: 2
Views: 159
problem with defining enumeration variable
hi guys,
i am having problem with defining enumeration varaiable
i have written the following code
[code]
cout<<"print enumeration";
cin>>money;
[code]
the problem is cin>>money;
where money is the...
|