Forum: Windows tips 'n' tweaks Apr 11th, 2009 |
| Replies: 21 Views: 19,165 It could be because of a lot of problems. But I suspect it has something to do ith low RAM and/or background programs.
Check out your task manager to see if you have any programs taking up too... |
Forum: C++ Sep 17th, 2008 |
| Replies: 21 Views: 2,699 oh. thats right now, Rachmaninov. I didnt notice that on my first look. Good going, WaltP.
offtopic: I just assumed Narue was a guy, somehow. Lol. Another misconception corrected ;) |
Forum: Community Introductions Sep 16th, 2008 |
| Replies: 11 Views: 958 thanks, you guys :) what a warm welcome! |
Forum: Geeks' Lounge Sep 16th, 2008 |
| Replies: 39 Views: 4,254 it has a lot of bugs, still. Google say that it has been tested on "major sites" but major sites like Facebook still have a lot of problems with it. (you cant click on the "logout". Something that... |
Forum: C++ Sep 16th, 2008 |
| Replies: 21 Views: 2,699 very good, Rachmaninov! :)
For the others: The process used by Rachmaninov is called "Bubble sort" as the smaller elements are "bubbled up" in the process. Another method called "Selection sort"... |
Forum: Geeks' Lounge Sep 16th, 2008 |
| Replies: 9 Views: 747 lol at ^. made me laugh, it did ;) |
Forum: Geeks' Lounge Sep 15th, 2008 |
| Replies: 9 Views: 747 ah lol. now that is as bad as mine. Now i can sit back and enjoy my beer without visions of shame playing in my mind. :p |
Forum: Community Introductions Sep 15th, 2008 |
| Replies: 11 Views: 958 |
Forum: Geeks' Lounge Sep 15th, 2008 |
| Replies: 9 Views: 747 Well, I think I've just had my worst programming gaffe. I write a 600 line program using linked lists and compile it. In addition to the usual missing ";" and "}", I continuously kept getting a "x... |
Forum: C++ Sep 15th, 2008 |
| Replies: 21 Views: 2,699 i dont think ivailosp's program will work properly. Try putting in 1,x,1,x,1,x,1,x... or something like that. It'll just output the entire vector again.
A small modification will set it right,... |
Forum: C++ Sep 14th, 2008 |
| Replies: 21 Views: 2,699 The primary mistake in your code is that it starts accepting num[] values from num[1] instead of num[0]. Its better to accept all the values of the array and then go into the next "for" loop for... |
Forum: Project Partners Wanted Sep 14th, 2008 |
| Replies: 1 Views: 1,751 did you realize you were in the C++ section? |
Forum: C++ Aug 29th, 2008 |
| Replies: 6 Views: 1,845 I use dev-cpp and dev has a separate lib folder to copy library files to.
F:\Dev-Cpp\lib\
other software should (probably) have one too. |
Forum: C++ Aug 29th, 2008 |
| Replies: 3 Views: 428 quick note here, the above code can also be written as:
.
.
.
while(datein)
{
datein >> year;
if(datein.eof()) break;
//Code here |
Forum: Windows tips 'n' tweaks Aug 27th, 2008 |
| Replies: 21 Views: 19,165 wow! nice list. I've got most of this, but never knew the modem thingy!
*searches for modem**realizes that i use broadand**hits self round the head a couple of times*
thanks man! |
Forum: Community Introductions Aug 27th, 2008 |
| Replies: 11 Views: 958 Hey! I'm an aspiring software engineer from India. I'm comfortable with Java, C/C++, VB6 and to some extent, HTML and CSS (because I need to build my own site).
DaniWeb has been helping me over... |
Forum: C++ Aug 27th, 2008 |
| Replies: 7 Views: 600 i'm sort of getting the idea, shamila. If you would post the shift() function, i think I might be able to help. |
Forum: C++ Aug 27th, 2008 |
| Replies: 10 Views: 1,061 #include<iostream.h>
#include<fstream.h>
int main()
{
char ch;
fstream fio;
fio.open("my_file.txt", fstream::out | fstream::app);
if(fio.fail())
{
cout<<"Error... |