Home |  Software downloads |  Submit |  Drivers |  Codecs |  Linux |  Scripts | 
Free Scripts Downloads
Contact Us | 
C and C++>Tips and Tutorials

Tips and Tutorials


  • Building Web Based N-Tier Applications using C#
    This article explores the N-tier and Distributed Application Architecture. Over the last decade, the way applications are designed has evolved and come a long way. We have stand-alone applications, se...
  • MySharpSQL
    Learn from ebook and well commented source codes, the easy way to use MySQL with C#. In addition to the ebook, this package contains a real world .NET program that allows you to manage a collection of...
  • MyBooks, a MFC MySQL client example source codes
    Would you like to know how to create MySQL client applications using Visual C++ with MySQL C API? What is MySQL? The MySQL database server is the world's most popular open source database. Its C A...
  • MyNotes, a MFC MySQL++ client example source codes
    Would you like to know how to create MySQL client applications using Visual C++ with MySQL++ class library? What is MySQL? The MySQL database server is the world's most popular open source databas...
  • Using SQLite with Visual C++
    Would you like to know how to create embedded SQL database applications using using Visual C++ with SQLite? What is SQLite? SQLite is a C library that implements an embeddable SQL database engine....
  • MySQL and C#
    If you’ve installed it, launch your C# compiler/IDE. Next, open the project you want to add MySQL support to. Now, go to the Project menu => Add Reference. Under the .NET tab look for MySQL.Dat...
  • Microsoft Analysis Services Training
    This free training covers all the topics you need to learn in order to become master in MSAS along with the screen shots and sample code with step by step instructions. Please visit the site for the ...
  • Multithreading in C++
    Multithreading is becoming an increasingly important part of modern programming. One reason for this is that multithreading enables a program to make the best use of available CPU cycles, thus allowin...
  • HTML Snapshot
    HTML Snapshot ActiveX Component uses the internet explorer's functionality to take (capture) a snapshot of a given URL. It hosts the web browser control on windows to download webpage and then capture...
  • C++ Tutorial on Copy constructors
    C++ Copy constructor is a constructor function with the same name as the class used to make deep copy of objects. There are 3 important places where a copy constructor is called. ...
  • Horner's Algorithm
    This tutorial will teach you how to run the Horner's algorithm, for number convertion. It converts numbers from specified numeric system into decimal, without using powers, which makes the whole proce...
  • Introduction to C++ Classes
    This tutorial introduces the key concepts of C++ classes. Designed for experienced C programmers who wish to learn the fundamentals of object-oriented programming....
  • Pointers And Arrays
    This tutorial is dedicated on the pointers and the arrays in C. It introduces the concept and usages of pointers and arrays....
  • Interacting with TinyPic from C#
    The following snippet will demonstrate how to interact with http://tinypic.com, an image mirroring service, directly from a C# application, using the WebRobot component available from http://foxtrot-x...
  • How to load file into memory using plain ANSI C language
    This C language article provides example of loading file (binary mode) into memory for later processing. Only standard libraries (stdio.h) are used, the source code is completly cross-platform. ...
  • File Handling in C Language
    First of all there is a detailed discussion on files, types of files and their attributes. The simple programs on how to write simple text/binary files in C language. At the end it also teaches how to...
  • Direct X and Game Programming
    Direct X and Game Programming tutorial start by giving an overview of directx and then tell you how to program Direct x in C/C++. Also includes a nice example of how to start developing....
  • A Simple Intro to SDL
    This is a simple introduction to making multi-platform games with the SDL. ...
  • What are the basics of main()
    function main() is the application's main routine where a program starts execution.It is the first user-written function run when a program starts.Object-oriented C++ programs consist mostly of classe...
  • C++ dynamic array template class
    This article provides example of dynamic array implementation using C++ templates. It uses standard malloc/realloc memory allocation functions and simple "doubling size" resizing strategy. O...
  • Cprogramming.com: Your Resource for C and C++ Programming
    Cprogramming.com is a web site designed to help you learn the C or C++ programming languages, and provide you with C and C++ programming language resources. The Getting Started with the C++ language ...
  • C Programming - An Overview
    In this tutorial you will learn about C Programming Lanuage, Overview of C, Sample program - Printing a message, Executing a C Program and Basic structure of C programs....
  • Beginning Visual C++
    This tutorial will go through the basics in programming with Visual C++ v6.0. Will cover from variables, string manipulation, arrays, loops and up to working with files....
  • Pointers in C language
    It is complete tutorial covering basics of Pointers, dynamic memory allocation, allocating blocks of memory and comparison of pointers and arrays....
  • Object Oriented Programming Techniques
    This tutorial covers how to get most out of the Object Oriented Programming Conecpts using C++ Language. Object- Oriented Programming (OOP) is an approach to program organization and development t...
  • Basic features of C Language
    The C programming model is that the programmer knows exactly what they want to do and how to use the language constructs to achieve that goal. The language lets the expert programmer express what they...
  • Loops & Decisions in C language
    This tutorial teaches very basics of loops and if-else statements in c language. the following statements are covered in this tutorial. 1- The if statement 2- The if - else statement 3- The...
  • An introduction to pointers in C++
    Pointers, from a beginner’s standpoint, can be an intimidating feature of c++. However they are also very useful which makes them an important feature to learn....
  • A Tutorial On Recursion
    This is my first tutorial and it will focus on the basics of recursion in C/C++...
  • One of the Best C++ tutorial sets
    cplusplus.us is proud to present FREE 5 star C++ Tutorial set. Plenty of sourcecode, pictures and easy to read decriptions....
  • C++ tutorial on Static functions
    Explains the concept of static functions and differences between normal functions and static functions....
  • C++ tutorial on arrays
    C++ Arrays are the data structures which can be used to store consecutive values of the same data types. Check the URL for the complete explanation on C++ Arrays....
  • C++ Tutorial - Data types
    C++ practically offers most of the necessary data types except for a basic data type string. This is a big trouble in C++ without such a good feature. This c++ tutorial will discuss the basic dat...
  • Basic C++ functions
    Tutorial for understanding the C++ functions. It shows you two functions that return the same result but are coded differently....
  • Introducing the 'for' loop
    A short tutorial introducing the 'for' loop, good for C++ newbies and programming beginners....
  • Introducing pointers
    Pointers represent an important aspect of C++. Although, newbies often get confused with pointers, even those who know other programming languages....
  • Beginner C++ and Allegro Tutorials
    This is a series of tutorials being developed for the c++ beginners wanting to create games. It starts from the basics and moves onto more advanced stuff....
  • Hello World - Intro to C++
    A quick and dirty introduction to what you need to program in C++. Then takeing you through the Hello World program step by step....
  • The Ultimate Introduction to C
    This tutorial will guide you through an introduction to C programming. It explains to you what a compiler is and where you can get one for free. It then teaches you how to program in C, learn: Your ve...
  • C++ Tutorial
    This is an extensive tutorial, starting with the very beginning, and going through the main concepts in the C++ programming, and finishes with the OOP (Object-Oriented-Programming)....
  • C Lessons
    This archive contains a complete course for you to learn the 'C' computer language itself. The language used is correct conversational English....
  • Programming in C/C++
    This tutorial starts from the very beginning, and goes to the more complicated areas of the C/C++ programming. A nice tutorial, if you are beginner, and want to get good C/C++ knowledge to continue to...
  • C++ for Dumies
    An easy to follow and understand 3-page C tutorial for absolute beginners....
  • Input / Output Tutorial
    Designed for beginners in C++, this tutorial presents several examples showing you how to cout/cin, work with arrays, and display data....
  • An introduction to C
    This tutorial starts with the basics, and goes through the most important concepts in C. A nice tutorial for beginners in C/C++....
  • Fast Introduction to C++
    This tutorial makes very short introduction to C++ programming, covering only the very basics....
  • Programming In C
    Starting from the very basics, this tutorial goes through some of the main concepts in the C programming....
  • Loops For Beginners
    A beginners tutorial for Loops. This tutorial is for the begginers to c++ who what to learn about loops. Everything is explained in detail....
  • Introduction to C Programming
    An introductory tutorial on C programming. Starts from the very basics, this tutorial shows the commands and the syntax of C, compared to Pascal's....
  • C Programming Email Course
    This is a programming course which comes to you by email. You receive 7 lessons of the course. You can either ask your questions and course problems in our public forums or register for a personal tut...

1 2 3

Ajax : ASP : ASP.NET : C and C++ : CFML : CGI and Perl : Flash : Java : JavaScript : PHP : Python : Remotely Hosted : Ruby on Rails : Tools and Utilities : XML