• home
  • forum
  • my
  • kt
  • download
  • this:1/3 25records  total:52    Start  Previous  Next  Last    goto:
    Buffer Overflow In Action Tutorial
    ON: 2007-09-05 08:33:25
    This tutorial will show you how to buffer overflow programs in order to change the flow of the application , even if this means executing your own code.
    20 times | category: [Security]
    Base64 Bit Encryption Tutorial
    ON: 2007-09-05 08:27:18
    This is a short but complete tutorial, that will show you how the Base 64 Bit encrypting algorithm works. Includes some code examples in C++ as well.
    8 times | category: [Security]
    XOR Encryption Tutorial
    ON: 2007-09-05 08:23:01
    Learn the basics to xor encryption and write your own program. Some programming knowledge is required such as C/C++ languages.
    83 times | category: [Security]
    Introduction to the C++ Standard Template Library
    ON: 2007-09-04 13:56:18
    This tutorials introduces you to the C++ Standard Template Library (STL) including how to use I/O streams, file streams, string streams, strings, vectors, lists, maps, iterators, and algorithms.
    15 times | category: [Programming in C and Cpp]
    Pointers and References in C++
    ON: 2007-09-04 13:33:06
    The ability to manipulate memory and memory locations directly is part of what makes C and C++ so powerful, so dangerous, and so difficult for beginners. C only has pointers, but C++ uses pointers and references that have a nicer syntax and attempt to be safer. This article will attempt to demystify these concepts in the minds of beginning C/C++ programmers.
    17 times | category: [Programming in C and Cpp]
    Advice and Warning for C
    ON: 2007-09-04 13:32:25
    C is a powerful programming language, but not without risks. Without help, even experienced C programmers can find themselves in trouble, despite "careful" programming, lint filters and good debuggers. And managers of programming projects can discover too late that using C carelessly can lead to delayed and defect-ridden software. This tutor helps avoid problems by illuminating the dangers of C and describing specific programming techniques to make C programming both faster and safer
    8 times | category: [Programming in C and Cpp]
    CD Drive Control
    ON: 2007-09-04 13:31:46
    Enumerates all CD-ROM drives and allows them to be opened and closed at the touch of a button
    18 times | category: [Programming in C and Cpp]
    Random Number Generation
    ON: 2007-09-04 13:21:52
    Generate random numbers with ease, including the main data types: int, float, and double.
    11 times | category: [Programming in C and Cpp]
    ppC++ documentation
    ON: 2007-09-04 13:20:02
    This is a documentation for ppC++ - HTML-embedded C++ preprocessor. This manual is very short and clear, shows all positions of current ppC++ development state. For advanced C/C++ programmers.
    6 times | category: [Networking]
    5 Top Mistakes Software Developers Make
    ON: 2007-09-03 18:38:49
    Five mistakes all developers and programmers most commonly make. Inserting programs into startup, having no pause button.
    5 times | category: [Miscellaneous]
    Sorting Algorithms in C
    ON: 2007-09-03 18:35:15
    Sorting in general refers to various methods of arranging or ordering things based on criterias. In Computer Science, due to obvious reasons, Sorting is of immense importance and is one of the most extensively researched subjects. It is one of the most fundamental algorithmic problems. So much so that it is also fundmental to many other fundamental algorithmic problems such as search algorithms, merge algorithms etc. It is estimated that around 25% of all CPU cycles are used to sort data. There are many approaches to sorting data and each has its own merits and demerits. This article discusses some of the common sorting algorithms.
    20 times | category: [Miscellaneous]
    Pointers and Arrays - a beginners guide
    ON: 2007-09-03 18:32:56
    We will cover arrays, 2-dimensional arrays, learn to pass arrays through functions. With pointers we will learn how to declare them correctly, use them correctly(to prevent horrible errors), and how to use them with arrays.
    14 times | category: [Miscellaneous]
    C's predefined macros
    ON: 2007-09-03 18:25:22
    A list of C's predefined macros (__FILE__, __LINE__, __STDC__...) with description and an example of how to use them.
    5 times | category: [Miscellaneous]
    C# Version 2.0 Specification
    ON: 2007-09-03 18:13:20
    C# 2.0 introduces several language extensions, the most important of which are Generics, Anonymous Methods, Iterators, and Partial Types. The language extensions in C# 2.0 were designed to ensure maximum compatibility with existing code. For example, even though C# 2.0 gives special meaning to the words where, yield, and partial in certain contexts, these words can still be used as identifiers. Indeed, C# 2.0 adds no new keywords as such keywords could conflict with identifiers in existing code.
    0 times | category: [Miscellaneous]
    Basic C++ Functions
    ON: 2007-09-03 18:08:58
    We have looked at one function already - the â
    17 times | category: [Miscellaneous]
    Casting in C++
    ON: 2007-09-03 18:07:44
    The new C++ standard is full of powerful additions to the language: templates, run-time type identification (RTTI), namespaces, and exceptions to name a few. This tutorial discusses one of the minor extensions: the new C++ casting operators.
    12 times | category: [Miscellaneous]
    Increment and decrement operators - C++
    ON: 2007-09-03 18:02:44
    C++ includes two operators not generally found in other programming languages
    10 times | category: [Introduction to C and Cpp]
    Continue statement - C++
    ON: 2007-09-03 18:01:08
    The continue statement works similar to the break statement. Instead of forcing termination, the continue statement forces the next iteration of the loop to take place skipping any code in between.
    11 times | category: [Introduction to C and Cpp]
    Polymorphism - C++
    ON: 2007-09-03 17:59:31
    Polymorphism is another important feature of Object Oriented Programming.Polymorphism means one function existing in many forms.
    16 times | category: [Introduction to C and Cpp]
    Break statement - C++
    ON: 2007-09-03 17:58:49
    The break statement has two uses. You can use it to terminate a case in the switch statement.
    3 times | category: [Introduction to C and Cpp]
    Rules for variables - C++
    ON: 2007-09-03 17:49:21
    A Variable is a named location in memory that is used to hold a value that may be modified by the program
    9 times | category: [Introduction to C and Cpp]
    Size and range of C++ data types - C++
    ON: 2007-09-03 17:48:46
    The table lists the data types available in C++, the number of bytes each data type occupies and their range
    5 times | category: [Introduction to C and Cpp]
    The while statement - C++
    ON: 2007-09-03 17:46:28
    The working of the while statement is as follows. First, the test condition is evaluated.
    2 times | category: [Introduction to C and Cpp]
    Commands for executing a C++ program in Unix OS - C++
    ON: 2007-09-03 17:42:58
    Program is created with the help of a text editor, which is either ed or vi in the case of UNIX operating systems.
    5 times | category: [Introduction to C and Cpp]
    Keywords - C++
    ON: 2007-09-03 17:42:20
    Keywords are the reserved words that have predefined meanings in C++.
    4 times | category: [Introduction to C and Cpp]
    this:1/3 25records  total:52    Start  Previous  Next  Last    goto: