Forum: C++ Oct 10th, 2007 |
| Replies: 19 Views: 6,272 according to me the code can be writen in this way.
#include <iostream>
#include <conio>
int sum(int);
int x; |
Forum: C Oct 9th, 2007 |
| Replies: 9 Views: 8,454 This program gets very easy with the use if recursive function if the job is only to print the number in the reverse order.
#include <iostream>
#include <conio>
void rev(int); |
Forum: C++ Oct 9th, 2007 |
| Replies: 8 Views: 753 i am using borland c++ ver 5.0 |
Forum: C++ Oct 8th, 2007 |
| Replies: 8 Views: 753 taking the above code
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello World!";
}
-by chasevoid |
Forum: C++ Oct 8th, 2007 |
| Replies: 8 Views: 753 i am new with c++ and as i was going through all the post i found a reserved word i.e.
namespace. i am unable to know what do u mean by this and as i was trying to run the program there was a error... |
Forum: C++ Oct 5th, 2007 |
| Replies: 2 Views: 715 can anyone do recursive binary search using a single argument |