C Tutorials

The Birth and history of C Programming Language

  • 2007-09-07
  • Comments
  • Emiley J
  • 297

The C language shook the computer world. Its impact should not be underestimated, because it fundamentally changed the way programming was approached and thought about. The creation of C was a direct result of the need for a structured, efficient, highlevel language that could replace assembly code when creating systems programs. As you probably know, when a computer language is designed, trade-offs are often made, such as the following:
Read More

Basics of C

  • 2007-09-20
  • Comments
  • Abinaya
  • 297

C is a general-purpose programming language. It has been closely associated with the UNIX operating system where it was developed, since both the system and most of the programs that run on it are written in C. The language, however, is not tied to any one operating system or machine; and although it has been called a ``system programming language'' because it is useful for writing compilers and operating systems, it has been used equally well to write major programs in many different domains.
Read More

Getting Started with C

  • 2007-09-20
  • Comments
  • Baski
  • 297

The only way to learn a new programming language is by writing programs in it. The first program to write is the same for all languages:  Print the words, hello, world. This is a big hurdle; to leap over it you have to be able to create the program text somewhere, compile it successfully, load it, run it, and find out where your output went. With these mechanical details mastered, everything else is comparatively easy.
Read More

Variables and Arithmetic Expressions in C

  • 2007-09-20
  • Comments
  • Charles
  • 297

This C sample program uses the formula oC=(5/9)(oF-32) to print the following table of Fahrenheit temperatures and their centigrade or Celsius equivalents:
Read More

The for statement in C

  • 2007-09-20
  • Comments
  • Daniel Malcolm
  • 297

The for statement is a loop, a generalization of the while. If you compare it to the earlier while, its operation should be clear. Within the parentheses, there are three parts, separated by semicolons. The first part, the initialization
Read More

Functions in C

  • 2007-09-20
  • Comments
  • Kamini
  • 297

In C, a function is equivalent to a subroutine or function in Fortran, or a procedure or function in Pascal. A function provides a convenient way to encapsulate some computation, which can then be used without worrying about its implementation. With properly designed functions, it is possible to ignore how a job is done; knowing what is done is sufficient. C makes the sue of functions easy, convinient and efficient; you will often see a short function defined and called only once, just because it clarifies some piece of code.
Read More

Basics of Structures in C

  • 2007-09-22
  • Comments
  • Grenfel
  • 297

The keyword struct introduces a structure declaration, which is a list of declarations enclosed in braces. An optional name called a structure tag may follow the word struct (as with point here). The tag names this kind of structure, and can be used subsequently as a shorthand for the part of the declaration in braces.
Read More

Pointers and Arrays in C

  • 2007-09-22
  • Comments
  • Priya
  • 297

In C, there is a strong relationship between pointers and arrays, strong enough that pointers and arrays should be discussed simultaneously. Any operation that can be achieved by array subscripting can also be done with pointers. The pointer version will in general be faster but, at least to the uninitiated, somewhat harder to understand.
Read More

Most Viewed Articles on C

Latest Tutorials

Related Tutorials

Sum of the elements of an array in C

Printing a simple histogram in C

Sorting an integer array in C

Find square and square root for a given number in C

Simple arithmetic calculations in C

Command-line arguments in C

Calculator in C

Passing double value to a function in C

Passing pointer to a function in C

Infix to Prefix And Postfix in C

while, do while and for loops in C

Unicode and UTF-8 in C

Formatting with printf in C

if, if...else and switch statements in C with samples

Statements in C

Archived Comments

1. nice examlpe but u can make it more easy so that t
View Tutorial          By: lovely at 2009-02-25 07:08:18

2. How can i download the comm.API .
pls tel

View Tutorial          By: Sajeer kc at 2015-01-16 04:12:28

3. sir, in this example,which value of n is being sto
View Tutorial          By: shivom at 2012-01-15 07:16:49

4. good info to create package
View Tutorial          By: Nirdesh at 2012-10-01 03:45:02

5. Excellent !...That explains my long-term question
View Tutorial          By: Vineeth at 2012-02-01 03:50:21

6. simple way friends:
public class palindrome

View Tutorial          By: Manoj at 2013-01-07 02:18:00

7. how doeas peek work in a c++ program
View Tutorial          By: odwa at 2008-02-29 02:44:19

8. programming is really exciting specially with c++^
View Tutorial          By: Jully at 2010-07-28 18:42:23

9. thanks a lot............
View Tutorial          By: mks at 2013-01-03 06:50:05

10. Thanks, how about using isset() function on page/U
View Tutorial          By: Paolo at 2009-06-01 07:29:10