Tutorials
Posted on
September 10th, 2008 87 Comments
What is an Array in C Language?
An array in C Programing Language can be defined as number of memory locations, each of which can store the same data type and which can be references through the same variable name.
An array is a collective name given to a group of similar quantities. These similar quantities could be percentage marks of 100 students, number of...
Read More |
Make a Comment
Posted on
September 10th, 2008 97 Comments
What is a Function?
A function is a block of code that has a name and it has a property that it is reusable i.e. it can be executed from as many different points in a C Program as required.
Function groups a number of program statements into a unit and gives it a name. This unit can be invoked from other parts of a program. A computer program cannot handle all...
Read More |
Make a Comment
Posted on
September 10th, 2008 154 Comments
First of all we need to learn about streams in C Programming. All C Programming input and output is done with streams, no matter where input is coming from or where output is going to. This is the standard way of handling all input and output and has definite advantages for the programmer. A library package has been evolved which is known as known as the ?Standard...
Read More |
Make a Comment
Posted on
September 10th, 2008 183 Comments
C language programes are executed in a sequence, but we can control the execution of C program by using any control mechanism by which we can compare things and come to a decision. This involves using some operations called Relational Operators, conditional statements called if-else and loops. We have fundamental operators to compare two values.
These relational...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
Before the release of Windows 95, most games were developed and released for
the Microsoft Disk Operating System (DOS) platform, usually using something
like DOS4GW or some other 32-bit DOS extender to obtain access to 32-bit protected
mode. Windows 95, however, seemed to signal the beginning of the end of the
DOS prompt. Game developers began to wonder how they...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
In June 2000, Microsoft announced both the .NET platform and a new programming
language called C#. C# is a simple, modern, object oriented, and type-safe programming
language derived from C and C++. C# (pronounced “C sharp”) is firmly
planted in the C and C++ family tree of languages, and will immediately be familiar
to C and C++ programmers. C# aims...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
The C programming language is a general programming language. It can be used to program anything, like computers, embedded systems, operating systems and computer applications. It is a structured and procedural programming language. In the beginning it was developed for UNIX, for system development but due to its ease of use and simplicity it has been used...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
Since the invention of the computer, many programming approaches have been tried. These included techniques such as modular programming, top-down programming, bottom-up programming and structured programming. The primary motivation in each case has been the concern to handle the increasing complexity of programs that are reliable and maintainable. These ...
Read More |
Make a Comment