|
C Language is powerful programming language developed by Denis Ritche in 1972. C Language is a general purpose language but normally used for system programming. In this tutorial you will learn the basics of Computer Language and C Language in deep.
|
| |
| Introduction |
| C was developed by Dennis Ritchie at Bell Laboratories in 1972. Most of its principles and ideas were taken from the earlier language B, BCPL and CPL. CPL was ... |
| First Program |
| Here is your first c program. Write carefully because C Language is a case sensative language. ... |
| Constants and Variables |
| C Constants: The alphabets, numbers and special symbols when properly combined... |
| Loops |
| Loops are used to repeat one statement or set statements more than one time. Most real programs contain some construct that loops within the program, performin... |
| Control Structure |
| C language possesses such decision making capabilities and supports the following statements known as control or decision-making statemen... |
| Functions |
| Function is a block of statements which perform some specific task and always return single value to the calling function. Functions are used to minimize the r... |
| Pointers |
| A pointer is a variable suitable for keeping memory addresses of other variables; the values you assign to a pointer are memory addresses of other variables or... |
| Arrays |
| An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique i... |
| Strings |
| Character type array is called string. All strings end with the NULL character. Use the %s placeholder in the printf() function to display string values.... |
| Structures and Unions |
| A structure is a collection of variables under a single name. These variables can be of different types, and each has a name which is used to select it from... |
| File Handling |
| A file is a collection of bytes stored on a secondary storage device, which is generally a disk of some kind. The collection of bytes may be interpreted, for e... |
| Graphics |
| In a C Program first of all you need to initialize the graphics drivers on the computer. This is done using the initgraph method provided in graphics.h library... |
|
|