You can Download the Following Set of Interesting Basic Programs
Comparing 2 numbers using conditionals
Comparing 3 numbers using conditionals
Swapping 2 numbers using a temporary variable
Swapping without using a temporary variable
Part1
Part2
Part3
Part4 - Single line swap
Leap year check
Fibonacci series
Part1
Part2
Prime check for multiple inputs
Sorting numbers contained in an array
Finding the greatest of numbers contained in an array
Searching among numbers contained in an array
Sorting and editing an array
...
Jan 22, 2010
Jan 20, 2010
Some basic C programs...
A Few Programs For Practice
Odd or Even Check
Temperature Conversion
Factorial of a number
Prime or Non-Prime Check
Prime list generation
Number reversing
Number palindrome check
String Reversing
String palindrome check
Solving Quadratic equations
Sine Series evaluation
Cosine Series evaluation
Exponential Series evaluation
Number Pyramid 1
Number Pyramid 2
Binary to decimal
VeeraVanniar
...
Jan 19, 2010
CP notes
Download C-Prog.Notes here
Chapter-1 Intro 2 Computers Programming Languages
Chapter-2 Intro 2 C
Chapter-3.1 Control Statements
Chapter-3.2 Control Statements
Chapter-4 Structures and Unions
Chapter-5 File Operations
VeeraVanniar
...
C - programming language
From Wikipedia
C is a general-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. Although C was designed for implementing system software, it is also widely used for developing portable application software.
C is one of the most popular programming languages. It is widely used on many different software platforms, and there are few computer architectures for which a C compiler does not exist. C has greatly influenced many other popular programming languages, most notably C++, which originally began as an extension to C.
From CProgramming
Third, C is reasonably close to the machine. When you're working with pointers, bytes, and individual bits, things like optimization techniques start...