Posts
 
Reputation
Joined
Last Seen
Ranked #961
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #11.7K
Ranked #2K
~10K People Reached
PC Specs
Extensa 4420 a couple of 1900Hz 160GB HDD 256MB ATI RADEON Xpress 1250 video 2GB DDR2
Favorite Tags
c++ x 17
Member Avatar for serkan sendur
Member Avatar for Free_Classified
0
467
Member Avatar for tarekkkkk

i consider this thread lame but funny... p.s. dev c++ must die! p.p.s. seriously, must die already.

Member Avatar for jbennet
0
791
Member Avatar for bita
Member Avatar for noodlecode
Member Avatar for Freaky_Chris
0
157
Member Avatar for david7
Member Avatar for winrawr

[QUOTE]variable would be successfully set to functionCall()'s return value[/QUOTE] no way, variable is set to true, because functionCall()!=0 is true. in this case true means 1

Member Avatar for winrawr
0
117
Member Avatar for Manutebecker
Member Avatar for winry

Lines 11,12. n is 0 after them and also i don't get why u use for not while and why u need that int i

Member Avatar for winry
0
207
Member Avatar for Swemp

fstream header will do. just include <ifstream> then do ifstream vname("filename"); vname >> array[i]; as many times as needed

Member Avatar for Swemp
0
5K
Member Avatar for scias23

Look, you have that [ICODE]#include<string.h>[/ICODE] right? So why don't you use c++ strings? It's like [CODE=CPP]string str; str = "whatever"[/CODE] and it's easier. Now this [CODE=CPP] for(int b=0;b<=(strlen(a)-1);b++) { for(int c=0;c<=(strlen(a)-2);c++) { if(strcmp(a[c],a[c+1])<0) //I DON"T THINK THIS IS RIGHT { strcpy(temp,a[c]); strcpy(a[c],a[c+1]); strcpy(a[c],temp); } } }[/CODE] is a mess. You …

Member Avatar for scias23
0
2K
Member Avatar for Simran1

Guess it would be good to mention that an abstract class is mostly an interface, a common interface for all derevied ones. For example you can make an abstract class with only one pure virtual overloaded operator= and derive from it all "assignable" classes.

Member Avatar for Agni
0
153
Member Avatar for mrnutty
Member Avatar for Freaky_Chris
0
264