Articles

by admin
news Welcome -- read before posting! closed
 
Welcome to the articles section in C++.com! In this forum, users can share technical documents an...
[no replies]
by Duoas
post Issues in Console Programming (1,2)
 
---------- Issues in Console Programming ---------- In thi...
[20 replies] Last: It is still command prompt box in Windows And UNIXes. ht... (by chrisname)
news How To: Ask Questions The Smart Way closed
 
Abridged version of the work of Eric Steven Raymond Introduction In the world of p...
[13 replies] Last: All that needs to be said is 'Be specific, respectful and patie... (by Cerburos)
post main() never executing. an academic exercise
 
Frequently I have heard the question, "Can you write a program without main()?" The answer is yes......
[12 replies] Last: Oh. I haven't read anything in init; I've glanced at panic, printk and... (by chrisname)
by Null
post Passwords
 
I'm going to show how to get passwords on windows and linux UNIX: One of the simpl...
[4 replies] Last: Wouldn't that cause undefined behaviour? I thought you aren't a... (by chrisname)
post DLL Symbols
 
What is a DLL? A DLL is a dynamic-linking library. It acts as a shared object in whic...
[3 replies] Last: There aren't any big difference between DLL and EXE. Why? Because It'... (by Null)
by Bazzy
post Beginner Exercises (1,2,3)
 
The original post was from Blitz Coder ( http://www.cplusplus.com/member/Blitz_Coder/ ) ...
[53 replies] Last: lol That sounds fun we could call it: "World of Radioacive Vampire Bun... (by DrChill)
post Pig Latin XD
 
I completed it :) input text filter output piglatin http://en.wikipedia.org/wiki/Pig_latin ...
[1 reply] : #include <conio.h> :( Don't bother making main take... (by firedraco)
post How to use the Conditional (ternary) operator: (1,2)
 
Note: It has become apparent that what is known as the ternary operator in C is in fact called the "...
[32 replies] Last: Voting sounds nice, maybe something like slashdot where low rat... (by chrisname)
post Template Instantiation
 
Template Instantiation I was looking around for something to wite a small article about and this...
[4 replies] Last: Yes (unless you have a cool export-compliant compiler) (by Bazzy)
post C++ LAPACK
 
The following is a framework for using LAPACK with C++. For more information checkout the LAPACK ...
[7 replies] Last: than you for your answer.this case too hard for me now :D. i must lear... (by areyoupp)
post How to parse command line parameters.
 
A simple tutorial on command line parameters, as some people may not know how it is done. -sec "W...
[19 replies] Last: oh, ok. (by chrisname)
by Duoas
post Clear the screen (1,2)
 
This short article describes the method of clearing the console display of all text and positioning ...
[37 replies] Last: :-) (by Duoas)
news Object Oriented XML
 
I developed a base class that any MFC object, COM object, CORBA object or any custom object may deri...
[no replies]
post Objectify design pattern
 
As is common in any programming language, the greatest boon usually also turns out to be the greates...
[no replies]
by Bazzy
news Converting numbers to strings and strings to numbers
 
This question is asked quite often, so here is a way of doing it using stringstreams : [c...
[17 replies] Last: try with wstringstream: wstringstream wss; wss << 324545678; ... (by Bazzy)
by Duoas
post Why system() is evil
 
So, you are here because everyone keeps telling you that things like system("PAUSE") an...
[4 replies] Last: Er. The whitespace is optional. :D (by QWERTYman)
post OutPut Array To Txt File
 
I have been scrolling around on forum to forum and i have noticed that many people are lost when co...
[2 replies] Last: yupp your completely right lol (by jloundy)
by Disch
post Headers and Includes: Why and How (1,2)
 
************************************************* ** 0) Introduction ...
[25 replies] Last: Yes, that's exactly right. That used to be a paradigm some folks kept... (by jsmith)
post Bit-Banging a counter
 
Here's a bit of code that I thought that I would share. It comes from a PLC (Programmable Logic Cont...
[2 replies] Last: You're right. I personally would never use something as obscure as thi... (by rootboy)
post Named Pipes for data exchange in Windows Vista
 
Author: Yuri Maxiutenko, Software Developer of Apriorit Inc. This article is devoted to the qu...
[no replies]
post 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 qu...
[no replies]
post Prefer std solutions over hand written copycats
 
Admittedly there are many tutorials around for beginners. The purpose of this article is not to ...
[5 replies] Last: I added a comment to the example explaining the point of operator< use... (by kempofighter)
by Zaita
post 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...
[9 replies] Last: Use the Boost Multidimensional Array Library: http://www.boost.org/do... (by Polter)
solved C++ Automatic Calculator
 
Just try it and let me know what you think! #include <cstdlib> #include <iostream> using ...
[14 replies] Last: Thank you very much, it was right in front of me and i just couldn't s... (by crodino911)
by mborja
post clear.cpp
 
For Cygwin users without a simple clear command on Win32: // clear.cpp #include <...
[2 replies] Last: I might as well do this one next... (Now that I can get back to it.) ... (by Duoas)
by mborja
post Reading user input as strings with getchar()
 
Safer alternative to scanf() for reading user input as strings: #include <iostream> usin...
[6 replies] Last: Actually, though, now that I think about it, char* buf = 0;... (by jsmith)
by mborja
post C++ Pointer Basics (Part 1)
 
Note: While reading through this short overview of pointers in C++, you will find some code samples...
[4 replies] Last: When we are talking about pointers, is there anything about functi... (by riffraff)
by mborja
post Get IP address of target hostname
 
Some code I came up with during the conception of my early C++ experience and learning. Going on thr...
[no replies]
by Bazzy
news 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 ...
[1 reply] : Very nice, good work Bazzy. Now if only we could sticky this on the be... (by Mythios)
post 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 wa...
[23 replies] Last: Inside the code or from the OS? Inisde the code you can use "break;", ... (by Scipio)
by Zaita
post 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 >> ...
[23 replies] Last: Update: Added information about cin not removing newline characters an... (by Zaita)
by Zaita
post Compilers, IDEs, Debuggers and the Jazz
 
Another article to cover a very common topic. Often questions come up like: - What IDE can I use? ...
[10 replies] Last: Oh yeah, I see what you mean. That still would technically be a patche... (by Mythios)
Pages: [1] [2]   Archived months: [sep2009]

Registered users can post in this forum.