Programming C
Programming C
Programming C
Chapter - 1
Overview of C
• Text Book:
– Programming In ANSI C (5th Edition) by E Balagurusamy
– C – The Complete Reference by Herbert Schildt
• Additional Support:
– Class Lecture Slides
• What is Programming C?
– C is a high-level and general purpose programming language.
{ Start of Program
………….
…………. Program Statements
………….
} End of Program
Subprogram Section
void print_pi() Function1()
{ {
printf("Value of PI is: %.4f",PI);
} }
3. Linking the program with functions that are needed from the
C library;
Edit
Program
Source
Code
Compile
Object
Code