C Tutorials

The Birth and history of C Programming Language

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

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
  • 17

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
  • 17

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
  • 17

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
  • 17

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
  • 17

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
  • 17

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
  • 17

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. Your script works beautifully. Is there a way to i
View Tutorial          By: JW at 2013-05-08 22:22:44

2. the best explaination
View Tutorial          By: kingh at 2010-09-17 04:06:46

3. you really dont know how much i want to thank u...
View Tutorial          By: Angana Sengupta at 2013-01-23 18:34:51

4. Well, I am fortunate to run CentOS 5 - everywhere
View Tutorial          By: Goozy at 2009-07-25 11:18:45

5. sach a lovely exmpl for bgnrs thanks
View Tutorial          By: aaditya at 2013-01-13 08:05:03

6. good its very useful to beginers
View Tutorial          By: venki at 2012-11-07 10:03:26

7. Nice Tips thank you
View Tutorial          By: Giritharan at 2013-04-11 09:24:37

8. Dude how did you used out.print() method it is giv
View Tutorial          By: Hardik at 2013-02-18 15:37:09

9. I need Structs full notes with examples
View Tutorial          By: Thomas at 2012-10-24 11:18:11

10. hello,
i have completed my bsc(computer sci

View Tutorial          By: Geeta at 2012-07-25 13:35:07