Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #20.4K
~1K People Reached
About Me

Programming

Interests
Programming
Favorite Forums
Favorite Tags
c++ x 7
c x 3
xml x 1

8 Posted Topics

Member Avatar for kwongchungying

Well, I haven't seen the files but here is my guess. The most common reason while compilation of this error is that, you include a file in one file and include the same file in some file (there is no problem so far) and after that in some other file, …

Member Avatar for Ejaz
0
283
Member Avatar for Young Teck 06

What compiler are you using? I had this problem way back, when I was in learning phase and used Turbo C++, and I had to stop it manually, in MS Visual C++ console applications, it is handled automatically. You can use [CODE]system("pause");[/CODE] in the end or its equivalent to stop …

Member Avatar for Young Teck 06
0
116
Member Avatar for prachi

Take a look at [url]http://cse.yeditepe.edu.tr/~osertel/courses/CSE211/materials/lect6.pdf[/url], You'll find the explaniations in it.

Member Avatar for Narue
0
106
Member Avatar for confusedmind

The two different implementations can acheive the same results, but they belong to two different familes. One is strucutural and you'll find the C implementations like that (although it does work in C++ as well). Where as [B]class[/B]es are part of C++, which applies Object Oriented approach to solve the …

Member Avatar for Ejaz
0
141
Member Avatar for nicoletonyf

Yes, you can write all the 3 class definations in one header file and implementation in one source file (in fact, you can write everything in one file as well). [CODE] // Class delarations class A { A(); ~A(); void MethodOfA(); }; class B { B(); ~B(); MethodOfB(); }; class …

Member Avatar for Ejaz
0
101
Member Avatar for JoBe

One solution can be, before inserting the new no. in the array, scan the array (iterate through it), to see whether the no. is already in the array or not, if not, insert it and yes, loop again. You can either iterate by simple loop or if you manage to …

Member Avatar for JoBe
0
184
Member Avatar for HollywoodTimms

[QUOTE=HollywoodTimms]Here is what I have #include <iostream.h> int main() { int i, total[3]; int myValue[3][3]; myValue[0][0] = 53,000; myValue[0][1] = 5; myValue[0][2] = 1; myValue[1][0] = 89,000; myValue[1][1] = 3; myValue[1][2] = 2; myValue[2][0] = 93,000; myValue[2][1] = 3; myValue[2][2] = 3; for (i = 0; i < 3; i++) …

Member Avatar for Ejaz
0
87
Member Avatar for raed_hasan

[QUOTE=raed_hasan]I have MFC Application which expected to generate reports in XML formats, my problem I do not have an idea for how simply dealing with XML as found in .NET (XmlDocument Class). can u suggent me with solution? Regards[/QUOTE] Take a look at [URL=http://www.codeguru.com/Cpp/data/data-misc/xml/article.php/c8287/]this[/URL]

Member Avatar for Ejaz
0
143

The End.