返回首页
当前位置: 主页>C / C++ / C#>
  • C++ Tutorial - Lesson One Learning How to Compile With Visua 日期:2009-04-06 02:10:52 点击:0 好评:0

    Learning a new piece of software can be daunting, but this tutorial will show you how to create a new project, add source code files then build and run your program. Load Visual C++ 2005Start by loading the Visual C++ IDE. You can also see how to do t...

  • Learn About Input and Output 日期:2009-04-06 02:10:52 点击:0 好评:0

    // ex2_2cpp #include stdafx.h #include iostream using namespace std; int main(int argc, char* argv[]) { cout.width(10) ; cout right Test endl; cout left Test 2 endl; cout internal Test 3 endl; cout endl; cout.precision(2) ; cout 45.678 endl; cout upp...

  • Instructions for Downloading and Installing Borland's Turbo 日期:2009-04-06 02:10:50 点击:0 好评:0

    You should now see the Menu page shown. Click the first menu Install Borland Turbo C++ . After the installation, you'll return to this screen and can install Borland's database Interbase 7.5 if you wish. On the next page : Running the Turbo C++ Instal...

  • Learn about C++ Classes and Objects 日期:2009-04-06 02:10:50 点击:0 好评:0

    Objects are the biggest difference between C++ and C. One of the earliest names for C++ was C with Classes.Classes and ObjectsA class is a definition of an object. It's a type just like int. A class resembles a struct with just one difference : all st...

  • C++ Programming Tutorial - Start Here! 日期:2009-04-06 02:10:49 点击:0 好评:0

    Welcome to About.com's free C++ programming tutorial This C++ tutorial features a series of lessons designed to teach you the basics of C++ programming. If you are completely new to programming read these articles first to give you an idea what is in...

  • C++ For Beginners - Learn about C++ 日期:2009-04-06 02:10:48 点击:0 好评:0

    C++ is a general purpose programming language invented in the early 1980s by Bjarne Stroustrup at Bell Labs. It is similar to C, invented in the early 1970s by Dennis Ritchie, but is a safer language than C and includes modern programming techniques s...

  • Programming Challenges 日期:2009-04-06 02:10:47 点击:0 好评:0

    Filed In: Projects Programming Challenges...

  • About C, C++ and C# 日期:2009-04-06 02:10:47 点击:0 好评:0

    This topic provides you with the A to Z of programming in C, C++ and C#. Visit the three sections (C, C++ and C#) to find instructions on getting started with each language, how to download and install compilers, and start working through the tutoria...

  • C Tutorial - Advanced Pointers 日期:2009-04-06 02:10:45 点击:0 好评:0

    When you write an application, unless it is trivial, one of the first problems you need to think about is how to hold data in memory. Your application may use a database but you will probably need some way to handle the data in memory. One way to hold...

  • C Programming Tutorial - Low Level Operations 日期:2009-04-06 02:10:45 点击:0 好评:0

    In its role as a high level assembler used for writing operating systems, C is often used to access memory locations and change individual bits. You might for example need to access individual bits in an int. It can sometimes be useful to conserve mem...

  • C Programming Tutorial - Random Access File Handling 日期:2009-04-06 02:10:44 点击:0 好评:0

    This lesson is about using random access files in C and the following lesson will look at working with text files. Apart from the simplest of applications, most programs have to read or write files. Maybe it's just for reading a config file, or a text...

  • C Tutorial - Lesson Six - About Functions 日期:2009-04-06 02:10:43 点击:0 好评:0

    We've briefly used functions before; strcpy() was used to assign a string. If you've used a spreadsheet worksheet function before then you'll have a good idea what a function is like. It's a block of code that can be called from anywhere in your appli...

  • C Tutorial - Strings and Text Handling 日期:2009-04-06 02:10:42 点击:0 好评:0

    In this tutorial I'll be looking in detail about text strings in C, how to work with them etc. First a recap. There is no such thing as a string type in c. Other languages - C++, Delphi, C#, Java etc, all support a string type but C doesn't. In C, if...

  • C Tutorial - Lesson Five - About Control Statements 日期:2009-04-06 02:10:41 点击:0 好评:0

    In this lesson, we'll be covering the major control statements which are for , while , do while , switch and if . With these under your belt, you are well on the way to becoming a seasoned programmer. The If StatementPrograms need to make decisions. S...

  • C Tutorial - About Pointers 日期:2009-04-06 02:10:40 点击:0 好评:0

    Pointers are probably the part of C programming that cause the most grief. However, due to the simplicity of C, to do anything non trivial you have to use pointers. They aren't that bad, but if you're new to them they will cause you troubles. It is al...

  • C Tutorial - Lesson Four - About Expressions 日期:2009-04-06 02:10:40 点击:0 好评:0

    In Lesson two we saw how to assign values to ints and floats. These assignment statements have a very simple structure. Variable = Expression We know what a variable is, i.e. somewhere to store the value of the expression, but just what is an expressi...

  • C Tutorial - Lesson Three - About Chars 日期:2009-04-06 02:10:38 点击:0 好评:0

    So far the only variables I've covered have been numeric; ints and floats. If we had to limit ourselves to those, it would make programming very limited and processing text next to impossible. C is perhaps not the easiest language to use for text hand...

  • C Tutorial Lesson Two - Handling Numbers 日期:2009-04-06 02:10:38 点击:0 好评:0

    In C there are two types of numbers. Ints and floats. There are also variants of these types that hold bigger numbers, or only unsigned numbers but they are still ints or floats. An int is a whole number like 47 without a decimal point. You can't have...

  • C Tutorial - Lesson One Learning How to Compile With Open Wa 日期:2009-04-06 02:10:36 点击:0 好评:0

    Learning a new piece of software can be daunting, but this tutorial will show you how to create a new project, add source code files then build and run your program. Load WatcomStart by loading the Watcom IDE. You can see how to do this here. Click Fi...

  • How to Download and Install the Open Watcom C/C++ Compiler 日期:2009-04-06 02:10:36 点击:0 好评:0

    Watcom has been around a long time. I wrote applications with it in 1995, so the hardware/software requirements (listed below) to use it should not prove difficult. IBM PC compatible An 80386 or higher processor 8 MB of memory Hard disk with enough s...

  • How to Compile Programs with Microsoft Visual C++ 6 日期:2009-04-06 02:10:34 点击:1 好评:0

    This tutorial will teach you how to create a project in version six of Visual C++. This version of Microsoft's C++ IDE has probably helped millions of developers in their C++ Programming over the last 8 years. Microsoft Visual C++ has existed in many...

  • How to compile C programs with Microsoft Visual C++ 2005 日期:2009-04-06 02:10:34 点击:1 好评:0

    By default, new applications created in Microsoft Visual C++ 2005 Express edition create C++ source code. Here is how to compile C code. Launch Visual C++ 2005 Express Edition and create a new project. Choose Win 32 and Win 32 Console Application. En...

  • Before You Start the C Tutorial 日期:2009-04-06 02:10:33 点击:1 好评:0

    Before You Start The C tutorial is suitable for anyone even if you haven't programmed before but you must have access to a computer and be able to do the following before you start the tutorial. Create and Edit text files. Download and Install the com...

  • C Programming Tutorial - Start Here 日期:2009-04-06 02:10:33 点击:1 好评:0

    Welcome to About.com's free tutorials on C programming . This tutorial features a series of lessons designed to teach you the basics of C programming. We're still writing these but new ones will appear from time to time. If you are completely new to...

  • Welcome to the C Area with Articles about C Programming 日期:2009-04-06 02:10:31 点击:1 好评:0

    Welcome to the C Area with Articles about C Programming...

  • 10 Commandments for C Programming by Henry Spencer 日期:2009-04-06 02:10:31 点击:1 好评:0

    These were written by Henry Spencer a programmer and engineer for the Canadian Space Agency. They are published widely on the web but as that is ephemeral are included here, I understand they are in the public domain but should that prove wrong, pleas...

  • Advice, tips and articles on Commercial Software Development 日期:2009-04-06 02:10:30 点击:0 好评:0

    Advice, tips and articles on Commercial Software Development By David Bolton, About.com Guide to C / C++ / C# This is the about the tools and techniques of being a commercial developer, with tips on how to break into the business and what it involves....

  • Software Projects, Programming Challenges, Source Code and R 日期:2009-04-06 02:10:29 点击:0 好评:0

    Software Projects, Programming Challenges, Source Code and Reviews By David Bolton, About.com Guide to C / C++ / C# Here is where you'll find software projects plus libraries of source code for each of the languages, programming challenges and reviews...

  • Learn about C, C++ and C# and How to Program in Each Languag 日期:2009-04-06 02:10:28 点击:1 好评:0

    Learn about C, C++ and C# and How to Program in Each Language By David Bolton, About.com Guide to C / C++ / C# This covers the history of C, C++ and C# and then lets you learn via comprehensive tutorials for each of the three languages. These include...

推荐内容