C4Swimmers Newsletter  

Beginner

For Beginner or Newbie programmers

Search Engine on C Programming

Search for C/C++/Unix Programming related information.
<!-- Google CSE Search Box Begins -->



<!-- Google CSE Search Box Ends -->

Learn Kernel Bootcamp - Part 1 has started

hi friends

The much awaited session Learn Kernel Bootcamp - Part 1 has started and the contents or step-by-step instructions to compile & install the Plain Vanilla Linux Kernel 2.6 is available at:

http://www.c4swimmers.net/wiki/mediawiki-1.6.10/index.php?title=LearnKernelBootcamp_Part1

or Visit http://wiki.c4swimmers.net and click on "Learn Kernel Bootcamp - Part 1".

Your feedback is always welcome about the session that helps us to improve our further sessions:

Huge collection of Indian C/C++ Programming websites

Huge collection of Indian C/C++ Programming websites

Looking for an Indian C/C++ Programming website? Our collection of Indian C/C++ related websites is for all ... So we put together our favorite Indian C/C++ links on this website for others to...

Moreover I just want to make collection of all Indian C/C++ programming websites here. So please help me by posting the Indian C/C++ links that you're aware. All you've to do is just respond to this message post by suggesting the useful link...

Thanks in advance,

Regards,
Webmaster of www.c4swimmers.net and

(Video) A Brief History of Software

Video : Michael Lopp, "A Brief History of Software"

Description :
Michael Lopp (Rands in Repose) "A Brief History of Software"

(Article) Constructors and Destructors in C++

Constructors and Destructors in C++

Constructor and Destructor Order
The process of creating and deleting objects in C++ is not a trivial task. Every time an instance of a class is created the constructor method is called. The constructor has the same name as the class and it doesn't return any type, while the destructor's name it's defined in the same way, but with a '~' in front:

class String
{

public:

(Game) 2 Player Tik Tak Toe Game with C#

Game Development: 2 Player Tik Tak Toe Game with C

A very simple game for beginners looking for reference for game development.

(Code Zone) Connect C++ with Oracle

Code Zone : Connect C++ with Oracle

Oracle C++ Call Interface (OCCI) is an Application Programming Interface (API) that provides C++ applications access to data in an Oracle database. This API is a significant improvement to the Oracle Call Interface (OCI) API as far as ease of use is concerned. Engineers who have written JDBC (Java Database Connectivity) code will find the OCCI API to be quite similar to that of JDBC

1) The table that is used in the example code is:

(Article) .NET Access Modifiers

Article : .NET Access Modifiers

(Article) XML and C#

Article : XML and C#

Introduction
XML, or Extensible Markup Language, is a very popular format used to store and share data. In a nutshell, XML stores information in a tree-based text format that allows both you and I as well as computers to easily read the data. I'm sure you have used XML-like languages directly or indirectly, to borrow two popular examples, if you have ever used RSS feeds or have written XHTML pages.

(Code Zone) TextBox Control in C#

Article : TextBox Control in C#

Introduction
Windows Forms text boxes are used to get input from the user or to display text. The TextBox control is generally used for editable text, although it can also be made read-only. Text boxes can display multiple lines, wrap text to the size of the control, and add basic formatting. The TextBox control allows a single format for text displayed or entered in the control.

(Article) Doubly Linked List Implementation in C#

Article : Doubly Linked List Implementation in C#

Introduction
LinkedList is a general-purpose linked list. It supports enumerators and implements the ICollection interface.It is a true linked list with separate nodes of type LinkedListNode, so insertion and removal are O(1) operations.

(Article) Commenting and Documenting in C#

Article : Commenting and Documenting in C#

Introduction
Commenting in any programming langauge is important part of development because it helps understanding the code better and supplements when working as a part of the large team and so C# being a langauge of the modern era has some of the best support any project needs as far as the documentation is concerned. There are three types of commenting syntax in C# multiline, single-line, and XML Tags.

(Article) Introduction to Generics in C#

Article : Introduction to Generics in C#

(Article) .NET System.Globalization namespace

Article : .NET System.Globalization namespace

The .NET Framework has built-in support for globalisation in its System.Globalization namespace. This namespace can help you build international support into your applications.

(Article) Nested Functions in C#

Article : Nested Functions in C#

If you program in more than one language, sometimes you want to use an phrase or expression from one language in the other, when it does not exist you have to invent it for that language. Nested functions are functions defined within functions. They can be useful for compartmentalizing behavior that is invoked many times and at different places within a function. As well, they can be useful for naming a block of behavior within a function.

(Article) Data Types in C#

Article : Data Types in C#

C# allows you to define two types of variables: value types and reference types. The value types hold actual values, while reference types hold references to values stored somewhere in memory.

Also value types are allocated on the stack and are available in most programming languages. Reference types are allocated on the heap and typically represent class instances.

Predefined C# value types

Blog story about C4Swimmers published at Official Yahoo! India Groups Blog

Hi all

Good news to share :-)

Recently I've been interviewed by the Yahoo! India Groups Community Manager Shefali to publish a short story about my group C4Swimmers (a.k.a C For Swimmers - Discover the depth of C).

Blog story about C4Swimmers published @ Official Yahoo! India Groups Blog : http://www.ygroupsblog.in/blog/2009/01/13/c-for-swimmers/
Yahoo! India Groups Blog : http://www.ygroupsblog.in

(Books) Oracle For Beginners Online Book

Books : Oracle For Beginners Online Book

(Courses) C++ Programming Courses from University of California

Courses : C++ Programming Courses from University of California

Here is a C++ Programming Course from the University of California. The lecture notes are linked below and will teach you important C++ programming topics such as pointers, arrarys, templates, multiple inheritance, polymorphism, iostreams, and Standard Library. This C+ tutorial is suitable for those who are familiar with Fortan and C languages.

(ARTICLE) Structure Query Language- SEQUENCE

SEQUENCE

A sequence is a database object used to generate sequence numbers for rows in the tables. It can be used for producing unique primary key values. A sequence is created using the CREATE SEQUENCE command.

A sequence is a user created database object that can be shared by multiple users to generate unique integers.

Syndicate content