
please wait
NOTICE: This forum is now permanently closed.
No new threads can be created.
To post a new article, please visit the Articles section at http://www.cplusplus.com/articles/.
by Apriorit
Named Pipes for data exchange in Windows Vista
|
Author: Yuri Maxiutenko, Software Developer of Apriorit Inc. This article is devoted to the question about working with services and applications in Windo... |
May 20, 2009 at 12:38pm
[no replies]
|
by Apriorit
Interaction between services and applications of user level in Windows Vista
|
Author: Yuri Maxiutenko, Software Developer of Apriorit Inc. This article is devoted to the question about working with services and applications in Windo... |
May 20, 2009 at 12:33pm
[no replies]
|
by kempofighter
Prefer std solutions over hand written copycats
|
Admittedly there are many tutorials around for beginners. The purpose of this article is not to provide yet another. Instead its purpose is to make a case f... |
May 15, 2009 at 6:00am
[5 replies] Last: I added a comment to the example explaining the point of operator< use... (by kempofighter)
|
by Zaita
Multi-Dimensional Arrays
|
This is another topic we get asked quite a bit. - How do I do a 2D/3D Array? When I also started working with multi-dimensional arrays I found it hard to fi... |
May 13, 2009 at 9:53pm
[9 replies] Last: Use the Boost Multidimensional Array Library: http://www.boost.org/do... (by Polter)
|
by crodino911
C++ Automatic Calculator
|
Just try it and let me know what you think! #include <cstdlib> #include <iostream> using namespace std; float a,c,n; char b,d; float addizione(float a,... |
May 9, 2009 at 3:04pm
[14 replies] Last: Thank you very much, it was right in front of me and i just couldn't s... (by crodino911)
|
by rdev5
clear.cpp
|
For Cygwin users without a simple clear command on Win32: // clear.cpp #include <iostream> using namespace std; int main() { char a=27u; ... |
Apr 29, 2009 at 1:30am
[2 replies] Last: I might as well do this one next... (Now that I can get back to it.) ... (by Duthomhas)
|
by rdev5
Reading user input as strings with getchar()
|
Safer alternative to scanf() for reading user input as strings: #include <iostream> using namespace std; #define MAXINPUTLEN 64 int main() { ... |
Apr 9, 2009 at 9:21pm
[6 replies] Last: Actually, though, now that I think about it, char* buf = 0; sca... (by jsmith)
|
by rdev5
C++ Pointer Basics (Part 1)
|
Note: While reading through this short overview of pointers in C++, you will find some code samples that are given to help illustrate and document the concepts... |
Apr 9, 2009 at 8:39pm
[4 replies] Last: When we are talking about pointers, is there anything about function... (by riffraff)
|
by rdev5
Get IP address of target hostname
|
Some code I came up with during the conception of my early C++ experience and learning. Going on three weeks now (I think). This little program will grab the IP... |
Apr 9, 2009 at 4:41pm
[no replies]
|
by Bazzy
How to post a new topic
|
I had some users who at first didn't know how to post on a forum so I decided to write this article Creating a New Discussion 0. Be sure you have rea... |
Mar 23, 2009 at 11:00am
[1 reply] : Very nice, good work Bazzy. Now if only we could sticky this on the be... (by Mythios)
|
by kikolani
How to make something to loop forever. (1,2)
|
If you want to make something to loop forever use either for(;;){ //put the code you want to loop forever here. } or int temp = 0; while (temp... |
Feb 19, 2009 at 11:56am
[23 replies] Last: Inside the code or from the OS? Inisde the code you can use "break;", ... (by Scipio)
|
by Zaita
Using cin to get user input. (1,2)
|
Too many questions keep popping up with the same problem. How do I get user input from cin using >> into X type. Using the >> operator opens you up to alot of p... |
Feb 10, 2009 at 8:11pm
[23 replies] Last: Update: Added information about cin not removing newline characters an... (by Zaita)
|
by Zaita
Compilers, IDEs, Debuggers and the Jazz
|
Another article to cover a very common topic. Often questions come up like: - What IDE can I use? - What compilers are there? - What <insert> is the best? ... |
Jan 30, 2009 at 1:36am
[10 replies] Last: Oh yeah, I see what you mean. That still would technically be a patche... (by Mythios)
|
by Duthomhas
Keep the console open long enough to see your program's output
|
Press any key to continue . . . This is typically a problem on Windows, caused by really dumb IDEs that don't know enough to keep the console open after th... |
Jan 28, 2009 at 10:57pm
[1 reply] : - - - - - - - - - - - - - - - - OS-specific ways - - - - - - - - -... (by Duthomhas)
|
by chris
A bit of bitwise
|
This is just a little handy structure defining a variable type & a simple operator overload, to get a bit value from a string. First things first we declare ... |
Jan 7, 2009 at 5:28pm
[3 replies] Last: Oddly enough firedraco I used to always use C++ iostream, I just seem ... (by chris)
|
by pkjena
Database Connection using C++ code
|
Hi, i want to write an application using pure C++ code . Here i'hv to use MS Access as Database. So all database functionalities ( i.e adding,retrieving,mo... |
Jan 2, 2009 at 12:44pm
[no replies]
|