CSC214; C Programming Language Lecture Note
CSC214; C Programming Language Lecture Note
Lecture Notes
Introduction
Hi, Welcome to C; a simple yet powerful computer programming language
that’s suitable for both computer science students with little or no
programming experience and for experienced programmers to use in
building important software systems.
1
CSC214: C Programming language 2024
unsigned. The signed integral data type means that the value may be
either positive or negative. The unsigned data type means the
number may only be positive. e.g. int age= 10;
Additionally, integral data type may be either short or long,
whereby it tells the computer the size of the integral number. In most
of the cases, short is 16 bits and long is 32 bits.
III. Floating-Point; Real numbers, those with decimal points, are stored
as floating-point data types. For floating-point values, the computer
stores the mantissa and the exponent. e.g float CGPA=4.20;
There are three different floating-point data types: float,
double, and long double. These data types are differ from each other
in terms of the size. Generally, a float is 32 bits, a double is 64 bits,
and a long double is 80 bits. e.g. float PI=3.1482;
Variables in C
Variables represent some segment of memory location in computer.
Different values placed in the storage depend on the value type. Variable
should be declared prior to storage of any values. When declaring variables
in C, rules must be followed, such as:
Variable name must begin with an alpha character such as A through Z
or an underscore, not a number. For example, Age and _Age are valid
variable names, but 2Lab and 2lab are not valid variable names.
Spacing in a variable name is not allowed. If the variable name
contains more than one word, there should be underscore in place of
the space. For example, course code should be CourseCode,
course_code or Course_Code.
2
CSC214: C Programming language 2024
int AdmissionNo;
int CourseCode = 216;
int Lab1, Lab2, Lab3;
Unsigned int Score1 = 47, Score2 = 100;
3
CSC214: C Programming language 2024
Operators In C
Arithmetic operators
= Assignment
() parentheses (brackets)
* multiplication
/ division
% modulus (integer remainder)
+ add
- Subtract
++ Increment
-- Decrement
Assignment Operators
= Assignment
+= Add and assign
-= Subtract and assign
*= Multiply and assign
%= Modulus and assign
== equal to
!= not equal to
> greater than
>= greater than or equal to
< less than
<= less than or equal to
&& logical AND
|| logical OR
! logical NOT
++ increment
-- decrement
4
CSC214: C Programming language 2024
Structure of C program
1 /*Comment*/
2 Preprocessor
3
4 Function Main()
5 {
6 Body of the program
7 -----------------------
8 -----------------------
9 -----------------------
10 }
output
Output in C means display or print messages and values on the screen.
The printf( ) function is used to produce such output. let see a simple c
program: printing a line of text.
1 #include <stdio.h>
2 /*this header include the contents of the standard input/output
3 library functions printf.*/
4 main (void)
5 /*c begins executing at the function main, void means main
6 does not receive any information*/
7 {
8 /*the left brace, {, begins the body of every function*/
9 printf ("welcome to C!");
10 /*instructs the computer to print on the screen the string of
11 characters marked by quotation marks*/
12 }
13 /*the right brace }, indicates that the end of main has been
14 reached*
5
CSC214: C Programming language 2024
Conversion Codes
When we use the printf( ) or scanf() functions, conversion are used
to reserve space for a value to be inputted from an input device like
keyboard or value to be outputted on a screen – the value of a variable or
expression, and to show how those values should be printed. All conversion
codes begin with a % symbol and with a type specifier.
Example:
1 #include <stdio.h>
2 main(void)
3 {
4 int x = 100;
5 printf(“The value in variable x is: %i”, x);
6 }
output of the above program is:
The value in variable x is: 100
Explanation:
All the characters in the format are printable except the conversion code %i,
which reserves space for an integer value to print. The format requires a
value to fill in that space, so C takes the value of x, and puts it there.
Input
The input in C enables user to enter values for e.g. data entry, with the help
of scanf( ). The function enables programmer to prompt for data entry
during program execution. Appropriate Conversion Codes should be specified
in order to display the required value. Consider the following example:
1 #include <stdio.h>
6
CSC214: C Programming language 2024
2 void main(void)
3 {
4 int x;
5 printf("Enter values for x: ");
6 scanf("%i", &x,);
7 printf("Your int is %i \n", x);
8 }
Explanation:
The scanf( ) function takes input characters and then divide them into sets
of characters to convert to appropriate data types for the locations. The
ampersands (&) in front of the variable x, is the locations in main memory –
the memory addresses of x.
C Functions
A function is a named, independent section of C code that performs a
specific task and optionally returns a value to the calling program or/and
receives values(s) from the calling program.
7
CSC214: C Programming language 2024
Control Structure
Control structures are three types of programming techniques used to
specify the order in which computations are performed. By using them in
various combinations you can write any program. The three structures are:
I. Selection. A selection structure is a choice between sets of
operations.
II. Sequence. A sequence structure is one operation after another, i.e.
each statement in source code will be executed one by one in a
sequential order.
III. Iteration. An iteration structure is a repetition of a set of operations,
which would be
discussed on next chapter.
Selection
C provides three types of selection structure in the form of statements.
1. Single selection
2. Double selection
3. Multiple selection
8
CSC214: C Programming language 2024
switch(expression){
case expression :
statement(s);
break; /*optional*/
case expression :
statem ent(s);
break; /*optional*/
default : /*Optional*/
statement(s);
}
Example:
#include <stdio.h>
int main () {
char grade;
printf("Enter Your grade:");
9
CSC214: C Programming language 2024
scanf("%c", &grade);
switch(grade)
{
case 'A' :
printf("Excellent!\n" );
break;
case 'B' :
case 'C' :
printf("Well done\n" );
break;
case 'D' :
printf("You passed\n" );
break;
case 'F' :
printf("Better try again\n" );
break;
default :
printf("Invalid grade\n" );
}
printf("Your grade is %c\n", grade );
}
Iteration
The iteration can be defined as repeating the same process multiple times
until a specific condition satisfies.
An iteration statement (also called an repetition statement or
loop) allows you to specify that an action is to be repeated while some
condition remains true. C provides three types of iteration structures in the
form of statements, namely:
I. while,
II. do…while, and
III. for.
components of a loop
• Counter
• Initialization of the counter with initial value
• Condition to check with the optimum value of the counter
• Statement(s) to be executed by iteration
• Increment/decrement
10
CSC214: C Programming language 2024
initialisation;
while(condition)
{
statements to be executed ;
increment/decrement;
}
#include<stdio.h>
main() {
int i=1;
while(i<=10)
{
printf("%d \n",i);
i++;
}
}
do
{
statement;
}
while(condition);
11
CSC214: C Programming language 2024
Example:
#include<stdio.h>
main()
{
int i=1;
do
{
printf("%d \n",i);
i++;
}
while(i<=10); }
Example:
#include<stdio.h>
main()
{
for(i=1; i<=10; i++)
printf("%d \n",i);
}
12