The net's largest PHP, CGI, Perl, JavaScript and ASP script collection and resource web portal
  New Listings
New Listings
Most Popular
Most Popular
Top Rated
Top Rated
Discussion
Discussion
Link to Us!
Link To Us
Search For:         
   
 
Sponsors


Categories

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

Sponsor Links


Home :: C and C++ :: Tips and Tutorials :: Programming in C and C++
Sort Listings By:       Click if you want to be notified of new or updated links in this category
  Total: 43    Displaying: 1 - 20 Pages:  1 2 3

   qsort: sorting array of strings, integers and structs   Hits: 872 

 
qsort() is standard C function for sorting arrays. It is defined by ISO C standard, and implemented in most C/C++ standard libraries(stdlib.h). This article contains an example of using qsort() for sorting integers, strings and structs.


Free   Version: n/a   Platform(s): linux, windows, freebsd, osx, sun   Updated: Mon Jun 25 2007

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Referral Spam with C#   Hits: 1467 

 
How to write a referal spam application. Its a good introduction to web browser control and C# in general.


Free   Version: n/a   Platform(s): windows   Updated: Mon Jan 15 2007

Listing Details
Visit
Download
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - File Management   Hits: 2491 

 
In this tutorial you will learn about C Programming - File management in C, File operation functions in C, Defining and opening a file, Closing a file, The getw and putw functions, The fprintf & fscanf functions, Random access to files and fseek function.


Free   Version: n/a   Platform(s): windows   Updated: Sun Jun  4 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Language - The Preprocessor   Hits: 1175 

 
In this tutorial you will learn about C Language - The Preprocessor, Preprocessor directives, Macros, #define identifier string, Simple macro substitution, Macros as arguments, Nesting of macros, Undefining a macro and File inclusion.


Free   Version: n/a   Platform(s): windows   Updated: Sun Jun  4 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Linked Lists   Hits: 1873 

 
In this tutorial you will learn about C Programming - Linked Lists, Structure, Advantages of Linked List, Types of linked list and Applications of linked lists. A linked list is called so because each of items in the list is a part of a structure, which is linked to the structure containing the next item. This type of list is called a linked list since it can be considered as a list whose order is given by links from one item to the next.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Handling of Character String   Hits: 1687 

 
In this tutorial you will learn about Initializing Strings, Reading Strings from the terminal, Writing strings to screen, Arithmetic operations on characters, String operations (string.h), Strlen() function, strcat() function, strcmp function, strcmpi() function, strcpy() function, strlwr () function, strrev() function and strupr() function.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Structures and Unions   Hits: 1411 

 
In this tutorial you will learn about C Programming - Structures and Unions, Giving values to members, Initializing structure, Functions and structures, Passing structure to elements to functions, Passing entire function to functions, Arrays of structure, Structure within a structure and Union.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Dynamic Memory Allocation   Hits: 1296 

 
In this tutorial you will learn about C Programming - Dynamic Memory Allocation, Dynamic memory allocation. Memory allocations process, Allocating a block of memory, Allocating multiple blocks of memory, Releasing the used space and To alter the size of allocated memory.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Arrays   Hits: 1301 

 
In this tutorial you will learn about C Programming - Arrays - Declaration of arrays, Initialization of arrays, Multi dimensional Arrays, Elements of multi dimension arrays and Initialization of multidimensional arrays.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Managing Input and Output Operations   Hits: 1102 

 
In this tutorial you will learn about Single character input output, String input and output, Formatted Input For Scanf, Input specifications for real number, Input specifications for a character, Printing One Line, Conversion Strings and Specifiers, Specifier Meaning.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Decision Making - Branching   Hits: 962 

 
In this tutorial you will learn about C Programming - Decision Making, Branching, if Statement, The If else construct, Compound Relational tests, Nested if Statement, The ELSE If Ladder, The Switch Statement and The GOTO statement.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Functions (Part-II)   Hits: 938 

 
In this tutorial you will learn about C Programming - Functions (Part II) Nesting of functions, Recursion, Functions and arrays, The scope and lifetime of variables in functions, Automatic variables, External variables, Multi-file programs, Static variables and Register variables.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Functions (Part-I)   Hits: 904 

 
In this tutorial you will learn about C Programming - Functions (Part-I) Functions are used in c for the following reasons, Function definition, Types of functions, Functions with no arguments and no return values, Functions with arguments but no return values, Functions with arguments and return values, Return value data type of function and Void functions.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Decision Making - Looping   Hits: 859 

 
In this tutorial you will learn about C Programming - Decision Making - Looping, The While Statement, The Do while statement, The Break Statement, Continue statement and For Loop.


Free   Version: n/a   Platform(s): windows   Updated: Thu Jun  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Data Types   Hits: 1473 

 
In this tutorial you will learn about C language data types, Primary data type, Integer Type, Floating Point Types, Void Type, Character Type, Size and Range of Data Types on 16 bit machine, derived data type, Declaration of Variables, User defined type declaration, Declaration of Storage Class, auto, static, extern, register, Defining Symbolic Constants, Declaring Variable as Constant and Volatile Variable.


Free   Version: n/a   Platform(s): windows   Updated: Tue May 30 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Pointers   Hits: 1268 

 
In this tutorial you will learn about C Programming - Pointers, Pointer declaration, Address operator, Pointer expressions & pointer arithmetic, Pointers and function, Call by value, Call by Reference, Pointer to arrays, Pointers and structures, Pointers on pointer.


Free   Version: n/a   Platform(s): windows   Updated: Tue May 30 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Constants and Variables   Hits: 967 

 
In this tutorial you will learn about Character Set, C Character-Set Table, Special Characters, White Space, Keywords and Identifiers, Constants, Integer Constants, Decimal Integers, Octal Integers, Hexadecimal integer, Real Constants, Single Character Constants, String Constants, Backslash Character Constants [Escape Sequences] and Variables.


Free   Version: n/a   Platform(s): windows   Updated: Tue May 30 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Expressions   Hits: 940 

 
In this tutorial you will learn about Expressin in C programming language - Arithmetic Expressions, Evaluation of Expressions, Precedence in Arithmetic Operators, Rules for evaluation of expression, Type conversions in expressions, Implicit type conversion, Explicit Conversion and Operator precedence and associativity.


Free   Version: n/a   Platform(s): windows   Updated: Tue May 30 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   C Programming - Operators   Hits: 934 

 
In this tutorial you will learn about Operators, Arithmetic operators, Relational Operators, Logical Operators, Assignment Operators, Increments and Decrement Operators, Conditional Operators, Bitwise Operators and Special Operators.


Free   Version: n/a   Platform(s): windows   Updated: Tue May 30 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Data Structures in C++   Hits: 11346 

 
This tutorial teaches how to implement Data Structures as classes using C++. Stacks,Queues,Circular Queues,Linked Lists,Stacked Linked List,Queued Linked List,Circular Linked List,Double Linked List and Binary Trees are explained.


Free   Version: 1.0   Platform(s): linux, windows   Updated: Sun Feb  5 2006

Listing Details
Visit
Download
Refer
PDF
  Member Reviews (0) Visitor Ratings

  Total: 43    Displaying: 1 - 20 Pages:  1 2 3

Share


Register | FAQ/Support | Contact Us | About Us | Getting Rated | Link to Us | Bookmark Us | Advertising Info | Terms of Use | Privacy Policy
Copyright © 2008 iNET Interactive. All rights reserved.
Other iNET Interactive Sites:
Web Hosting Talk | dBForums | Mac Forums | Hosting Catalog