No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Programming
- Interests
- Programming
8 Posted Topics
Re: 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, … | |
Re: 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 … | |
Re: Take a look at [url]http://cse.yeditepe.edu.tr/~osertel/courses/CSE211/materials/lect6.pdf[/url], You'll find the explaniations in it. | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: [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++) … | |
Re: [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] |
The End.