C Language

Share Embed Donate


Short Description

Download C Language...

Description

-1-

C Language Introduction Languages : A Set Of Statements Is Called A Language.There Are Four Types Of Languages According To Their Time.

I generation languages: these languages are machine languages. To write programs in these languages the system technology must be required. The data is Non-portable. That means a program written in a system does not work in another systems.

Ii Generation Languages :These Are Assembly Languages. These Are Also system oriented that means to write any program in a system that system’s technology must be required and data is non-portable. But they used MNEMONIC words in programs. That means they used a single word instead of more words.

III Generation Languages :In these languages programs are witten in

general english language.There is no need to know the system technology and the data can be transfered anywhere.

IV Generation languages :These languages are defined in any one of the above languages.These are also called as packages. Here I & II Generation languages are called Low Level Languages and III & IV generation languages are called High Level Languages. For high level languages we have to use translaters to translate the source code written in general english language into machine language. These translaters are two types. 1) Interpreters, 2) Compilers. 1) Interpreters :These translaters translate the source code step by step into machine language until any error. If there is any error it stops and shows some message. After correction it can continue. Ex: BASIC, DBase III+, ....

2) Compilers :These translaters translate the entire source code into machine language when it is error-free and creates an object file in machine language. If there is any error it shows the list of error. After debugging it creates the object file.

Ex: COBOL, C, C++, ...

-2-

C LANGUAGE The language ‘C’ was designed by Dennis Ritchie at AT & T Bell Laboratories. The standardised C was released in 1979.

The ‘C’ language is used to develop i) ii) iii) iv) v)

Scientific applications, Business applications, Graphical applications (Ex: WINDOWS ), System programs, Operating Systems (Ex: UNIX) , ...

Character Set : alphabets

constants,

statements,

digits ==> variables, ==> special symbols keywords

==> Programs instructions

Constants : The unchangeable quantities are called Constants.The constants are generally two types. 1) Character constants :

a) Characters Ex: ‘a’, ‘5’, ‘+’, ‘ ‘, ... b) Strings Ex: “abc”, “435”, ‘rama”, ... 2) Numeric Constants : a) integers Ex: 435, -657, 65535, -32768,... b) Real numbers i) Fractional form Ex: 435.67, 345.00054, ... ii) Exponential form Ex: 0.02e3, 1.17e-38, ... Variables : The quantities which can be changed during the execution of program are called Variables. A variable can be considered as the name of the cell which can hold the constants. To use any variable it must be declared with its data type before the first executable statement and they can be initialised. Naming the variable is very important. 1) The variable name must be start with either alphabets or an underscore and may contain alphabets, digits, hyphen or underscore. 2) The maximum length of a variable is 8 characters. But some compilers can accept upto 32 characters. 3) There must not be any blank spaces or special symbols in a variable name. 4) A variable name must not be a keyword.

Ex:

valid eno empname emp-name

invlid emp name emp(name 45abc

Keywords : These are predefined words. There are 32 keywords in C language. These keywords can not be used as user-defined variables.

Operators : There are 42 operators in C language.

-31) Arithmetic Operators :

+ - *

/ %

Ex: 100 + 40 ==> 140 100 - 40 ==> 60 100 * 40 ==> 4000 100 / 40 ==> 2 100 % 40 ==> 20 40 % 100 ==> 40

2) Assigning Operators : = (variable) = (constant) / (variable) / (expression) ; Ex: a = 5 b=a c = a + b -2 3) Multiple operators :

+=

-= *= /= %=

Ex: a = a + 3 ==> a += 3 a = a - 3 ==> a -= 3 a = a * 3 ==> a *= 3 a = a / 3 ==> a /= 3 a = a % 3 ==> a %= 3 4) Unary Operators :

++

--

Ex :

a = a + 1 ==> a += 1 ==> a ++ ==> ++ a a = a - 1 ==> a -= 1 ==> a -- ==> -- a 5) Relational Operators : 6) Logical Operators :

== &&

7)

, . : ; < > # { [ ( ) ] } ......

Structure of a ‘C’ program : preprocessor commands global declarations main()

{ local declarations ; statements ;

||

> !

< >= Console Input Output ) Syntax : clrscr(); 2) printf() :-

This function is used to display the text and the values of variables. This function’s prototype has defined in the header file STDIO.H To display the variable’s value the format string must be used. ( STDIO ==> Standard Input Output ) Syntax : printf(“ format string “, variables) ; Ex : printf(“ Hello \t World “); printf(“ %d %c”, k, j); printf(“The marks are %d, %d, %d”, m1, m2, m3 ); Note : The function printf() returns an integer value that is the number of arguments given to the statement.

-6Remarks :To write any remarks or comments to the statements they must be enclosed with the symbols Ex :

/* sdfjkshadjfsdjkafkjsadjkfhkasdj sdafhasdfhgasdhfgasdgfgasdfhasdfj sdafjksadfjasdkhfjasdhkfjhksda

*/ Ex Programs : 1)

/* My First ‘C’ Program */ # include # include main() { clrscr() ; printf(“Hello” ); printf(“Bhanodaya “) ; printf(“Welcome “) ; } /* Save this program (F2) as FIRST.C After compilation(Alt-F9) it creates an object file, and an executable file which can be executed at MS-DOS prompt. By saving a modified file it creates a backup file. FIRST.C FIRST.BAK FIRST.OBJ FIRST.EXE Output : Hello Bhanodaya Welcome */

/* */

-7-

TURBO C editor : It is a compiler of C program and it can be also used as an general editor. To enter into editor first change into the directory which contains the software and enter the command TC at the command prompt. C:\> CD TC C:\TC> tc Then it opens the editor which contains a menu bar at the top, a status bar at the bottom and a main window to write the programming statements and a sub window which shows the messages. The menu bar contains some menu pads and they can be selected by pressing ALT and the highlighted character in the required menu pad. Then it shows the submenu which contains some bars and they can be selected using arrow keys. The status bar shows online help and the keys information. 1) To write a new program select ‘New’ command from “File” menu. 2) To save the working program select ‘Save’ command from “File” menu or press F2 and enter a name. 3) To compile the program select ‘Compile to OBJ’ command from “compile” menu or press Alt + F9. Then it shows the list of errors or warnings. If the program is error-free then the compiler creates an object file (.OBJ) and an executable file (.EXE). 4) To execute the program select ‘Run’ command from “Run” menu or press Ctrl + F9. 5) To seee the output of the execution select ‘User Screen’ command from “Run” menu or press Alt + F5. 6) To close the editor select ‘Quit’ command from “File” menu or press Alt + X.

-8Escape Sequences :

\0 \t \l \r \n \a \’ \” \\

==> ==> ==> ==> ==> ==> ==> ==> ==>

Null character Tab ( 8 spaces) Line feed Carriage Return New line character ( \n = \l + \r ) Alert (beep sound) Single quotes Double quotes back slash

Ex Programs : 2)

/*

Using Escape Seque nces

# include # include main() { clrscr() ; printf(“Hello \t “) ; printf(“Udaya \n”) ; printf(“Welcome “) ; } /*

Output : Hello Udaya Welcome */

3) # include # include main() { clrscr() ; printf(“Hello \t Bhanu \n Welcome “) ; } /*

Output : Hello Bhanu Welcome */

*/

-9-

4) /* Using Variables

*/

# include # include main() { int k = 65 ; char j = ‘*’ ; clrscr() ; printf(“\n The value of k is %i %d %c %o %x”, k, k, k, k, k ) ; printf(“\n The value of j is %i %d %c %o %x”, j, j, j, j, j ) ; } /* Output : The value of k is 65 65 A 101 42 The value of j is 42 5)

/*

42

*

52 2a

*/

Formatting the out put */

# include # include main() { int a, b, c ; clrscr() ; a = 6 ; b = 23456; printf(“\n %05d \t %d”, a, a ) ; printf(“\n %05d \t %d”, b, b ) ; printf(“\n %5d \t %d”, c, c ) ; }

c = 678 ;

/* Output : 00006 23456 678

6 23456 678

*/ 6)

/*

Arithmetic Operati ons */

# include # include main() { int a, b, c, d, e, f ; clrscr() ;

- 10 a = 100 ; b = 40 ; c = a + b ; d = a - b ; e = a * b ; f = a / b ; printf(“The given valu es are %d, %d”, a, b ) ; printf(“\n The additio n is %d”, c) ; printf(“\n The subtrac tion %d”, d) ; printf(“\n The product is %d”, e) ; printf(“\n The divisio n %d”, f) ; printf(“\n The reminde r is %d”, a%b) ; } /*

Output : The The The The The The

given values are 100, 40 addition is 140 subtraction 60 product is 4000 division 2 reminder is 20

*/ Notes : The Arithmetic operations are three types depend on the types of the operands in the expression.

operand1 integer integer real

operand2 integer real real

result integer real real

Ex Programs : 7)

/*

Type casting

*/

# include # include main() { int m1, m2, m3, tot; float avg ; clrscr() ; m1 = 65; m2 = 66; m3 = 68; tot = m1 + m2 + m3 ; /* avg = tot / 3.0 ; avg = (float) tot / 3 ;

*/

printf(“The three subjects marks are %d, %d, %d”, m1, m2, m3 ) ; printf(“\n The total %d \t Average %f”, tot, avg ) ; } /* Output : The three subjects marks are 65, 66, 68

- 11 The total 8)

/*

199

Average

66.33

*/

Formatting the output of floating point values

*/

# include # include main() { float bas, da, hra, pf, net ; clrscr() ; bas = 5000; da = bas * 20 / 100 ; hra = bas * 30 / 100 ; pf = bas * 5 / 100 ; net = bas + da + hra - pf ; printf(“The Basic Salary %f”, bas) ; printf(“\n Da %.1f \t Hra %010.3f \t Pf %5.0f”, da, hra, pf) ; printf(“\n Net Salary %10.2f”, net) ; } /*

Output :

The Basic Salary 5000.000000 Da 1000.0 Hra 001500.000 Net Salary 7250.00

Pf 00250

*/

q) /*

Program to demonstrate the */

Increment / Decrement operators

# include # include main() { int k = 5 ; clrscr() ;

Output 5

printf(“\n %d”, k) ; k ++ ; printf(“\n %d”, + +k) ; printf(“\n %d”, k ++); printf(“\n %d”, k) ;

7 7 8

k -- ; printf(“\n %d”, k --) ; printf(“\n %d”, --k) ;

7 5

k = ++k + ++k + ++k ;

24 printf(“\n %d”, k) ;

- 12 k=5; k = k++ + ++k + ++k + k++ + k++ ; printf(“\n %d”, k) ;

38

getch() ; }

Notes : scanf() : This function is used to accept the values for the variables while executing the program from keyboard. This function’s prototype has defined in the header file STDIO.H The function printf() returns an integer value that is the number of arguments given to the statement. Syntax: scanf(“formatstring” , &(variables) ); Note : To accept two or more values with a single scanf() they can be seperated by space or tab or enter key. Ex : i)

int a; scanf(“%d”, &a);

ii) int m1, m2, m3; scanf(“%d%d%d”, &m1, &m2, &m3); iii) char ch; scanf(“%c”, &ch); getch() : This function is used to accept a single character for the variable while executing the program. But this function does not display the entered character. This function’s prototype has defined in the header file CONIO.H Note : To see the entered character the function getche() can be Used. Syntax: (variable) = getch() ; Ex : char c; c = getch();

- 13 -

Ex Programs : 9) /* Program to demonstrate the difference between the functions scanf(), getche(), getch()

*/

# include # include main() { char k ; clrscr(); printf(“Enter any character “) ; scanf(“%c”, &k) ; printf(“You entered the character %c”, k) ; printf(“\n\n Enter any character “) ; k = getche(); printf(“\n You entered the character %c”, k) ; printf(“\n\n Enter any character “) ; k = getch() ; printf(“\n You entered the character %c”, k) ; getch(); } /* Output : Enter any character abcdef You entered the chracter a Enter any character g You entered the chracter g Enter any character You entered the chracter d

*/

10) /* Write a program to calculate the total, average of a student’s three subjects marks # include # include main() { int m1, m2, m3, tot; float avg ; clrscr() ; printf(“Enter three subjects marks \n”) ; scanf(“%d%d%d”, &m1, &m2, &m3 ) ; tot = m1 + m2 + m3 ; /* avg = tot / 3.0 ; */ avg = (float) tot / 3 ;

*/

- 14 printf(“The three subjects marks are %d, %d, %d”, m1, m2, m3 ) ; printf(“\n The total %d \t Average %f”, tot, avg ) ; } /* Output : Enter three subjects marks 65 66 68 The three subjects marks are 65, 66, 68 The total 199

Average 66.33

*/

11) /* Write a program to accept an employee’s basic salary, calculate da, hra, pf, net salary and print all */ Notes : Conditional Statements : In C language the conditional statement returns zero when the condition is false. Otherwise it returns a non-zero(1) value when the condition is true. Ex Program : 12) # include # include main() {

output

int k = 5 ; clrscr() ; printf(“\n printf(“\n printf(“\n printf(“\n printf(“\n getch() ; }

%d”, %d”, %d”, %d”, %d”,

k ); k1 0) ; k+( k==5) ); k=1 0) ;

5 1 0 6 10

- 15 -

Notes : There are three types of conditional statements in ‘C’. 1) if, 2) switch, 3) conditional operators 1) if ... else : Syntax :

if (condition) { (statements); }

if (condition) { (statements); or

}

else

{ (statements) ;

} Ex Program : 13)/* Write a program to check whether the given number is zero or not */ # include # include main() { int k; clrscr() ; printf(“Enter any number “) ; scanf(“%d”, &k) ; if(k==0) printf(“The number is zero “) ; else printf(“The number is not zero “) ; getch() ; } 14) /* Write a program to check the given number is positive or negative # include # include main() { int k ; clrscr() ; printf(“Enter any number “) ; scanf(“%d”, &k) ;

*/

- 16 if(k==0) printf(“The number is zero “) ; else if(k>0) printf(“The number is Positive “); else printf(“The number is Negative “) ; getch() ; } 15) /* Write a program to find the big number in the given two numbers

*/

# include # include main() { int a, b ; clrscr() ; printf(“Enter any two numbers \n”) ; scanf(“%d%d”, &a, &b) ; if(a==b) printf(“\n Given both are equl “) ; else { printf(“\n The big is “) ; if(a>b) printf(“%d”, a) ; else printf(“%d”, b) ; } getch() ; } 16) /* Write a program to find the biggest number in the given three numbers */ # include # include main() { int a, b, c ; clrscr() ; printf(“Enter any three numbers \n”) ; scanf(“%d%d%d”, &a, &b, &c) ; if(a==b && a==c) printf(“Given all are equal “) ; else

- 17 { printf(“\n The biggest is “) ; if(a>b && a>c) printf(“%d”, a) ; else if(b>c) printf(“%d”, b); else printf(“%d”, c); } getch() ; } 17) /* Write a program to find the smallest number in the given five numbers # include # include main() { int a, b, c, d, e, t ; clrscr() ; printf(“Enter any five numbers \n”) ; scanf(“%d%d%d%d%d”, &a, &b, &c, &d, &e ) ; if(a==b && a==c && a==d && a==e) printf(“\n Given all are equal “) ; else { t=a; if(t>b) t = b; if(t>c) t = c ; if(t>d) t = d ; if(t>e) t = e ; printf(“\n The biggest is %d”, t) ; } getch( ); } 18)/* Write a program to find the biggest and smallest numbers in the given five numbers */ # include # include main() { int a, b, c, d, e, x, y ;

*/

- 18 clrscr() ; printf(“Enter any five numbers \n”) ; scanf(“%d%d%d%d%d”, &a, &b, &c, &d, &e ) ; if(a==b && a==c && a==d && a==e) printf(“\n Given all are equal “) ; else { x = a ; y = a ; if(x bas >= 5000 5000 > bas >= 2000 bas < 2000

==> ==> ==> ==>

da da da da

= = = =

40%, 35%, 30%, 25%,

net = bas + da + hra - pf

hra hra hra hra

= = = =

50%, 45%, 40%, 35%,

pf pf pf pf

= = = =

25% 20% 15% 10%

*/

Notes :

2)

switch... case :

Syntax: switch(variable)

{ case (value) : case (value) :

(statements) ; (statements) ;

default : (statements) ;

} break : This keyword stops the execution in the given block and come out. statements and looping Statements. Ex Programs : 21) # include # include main() { int k ;

Generally this is used in switch..case

- 20 clrscr() ; printf(“Enter any number “ ); scanf(“%d”, &k) ;

switch(k) { case 0 : printf(“\n Number is zero “ ); case 1 : case 2 : case 3 : case 4 : printf(“\n Number is less than five “) ; break ; case 5 : printf(“\n Number is five “ ); break ; default : printf(“\n Number is greater than five “) ; } getch() ; } 22) # include # include main() { char k; clrscr() ; printf(“Enter any one of the alphabets “ ); k = getche() ; switch(k) { case ‘a’ : case ‘A’ : printf(“\n A for Active “) ; break ; case ‘b’ : case ‘B’ : printf(“\n B for Brave “) ; break ; case ‘c’ :

- 21 case ‘C’ : printf(“\n C for Courage “); break ; case ‘d’ : case ‘D’ : printf(“\n D for Dare “) ; break ; default : printf(“\n You are timid “) ; } getch() ; } 23) # include # include main() { int a, b, k ; clrscr() ; printf(“Enter two numbers \n”) ; scanf(“%d%d”, &a, &b) ; printf(“\n\n 1. Addition “) ; printf(“\n 2. Subtraction “) ; printf(“\n 3. Multiplication “) ; printf(“\n 4. Division “) ; printf(“\n\n Select your choice “) ; scanf(“%d”, &k); printf(“\n”) ; switch(k) { case 1 : printf(“ The addition %d”, a+b) ; break ; case 2 : printf(“ The subtraction %d”, a-b) ; break ; case 3 : printf(“ The multiplication %d”, a*b); break ; case 4 : printf(“ The division %d”, a/b); break ; default : printf(“ Invalid choice “); } getch() ; } Notes : 3) Conditional Expressions : ( ? : ; )

- 22 Syntax : (condition) ? (statement1) : (statement2) ; Ex Programs : 24)/* Write a program to check whether the given number is zero or not # include # include main() { int k; clrscr() ; pritnf(“Enter any number “) ; scanf(“%d”, &k); (k==0) ? printf(“Number is zero “) : pritnf(“Number is not zero “) ; getch() ; }

*/

- 23 -

25)/* Write a program to find the biggest number in the given three numbers

*/

# include # include main() { int a, b, c, t ; clrscr() ; printf(“Enter any three numbers \n”) ; scanf(“%d%d%d”, &a, &b, &c); t = (a>b) ? a : b ; printf(“The biggest is %d”, (t>c)?t:c ); getch() ; } Notes : gotoxy() : This function locates the cursor position to the given place on the screen. This function’s prototype has defined in the header file CONIO.H Syntax: gotoxy(column, row) ; Generally in MS-DOS mode the screen contains 80 columns and 25 rows. Ex Programs : 26) # include # include main() { clrscr() ; gotoxy(20, 3) ; printf(“Hello “); gotoxy(70, 5); printf(“Bhanodaya “) ; gotoxy(35,12); printf(“Welcome “); gotoxy(50,20); printf(“To smile “); getch() ; }

- 24 Notes : goto : This command changes the execution control to the given statement. Syntax: goto (label) ; (label) : (statements) ; Ex Programs : 27) # include # include main() { clrscr() ; printf(“Hello “) ; printf(“World “) ; goto abc ; printf(“Go out “) ; xyz : printf(“To smile “) ; goto end ; abc : printf(“Welcome “) ; goto xyz ; end : getch() ; } /* Output : Hello World Welcome To smile

*/

Note : Looping Statements : Repeating a block of statements number of times is called Looping. There are three types of looping statements defined in C language. 1) do..while, 2) while, 3) for. Note : The keyword ‘goto’ cn be also used to repeat a block of statements number of times. Ex Programs : 28) # include

- 25 main() { abc : printf(“Welcome “) ; goto abc ; } 29) /* Program to display the first 10 natural numbers # include # include main() { int k ; clrscr() ; k=1; abc : printf(“%d “, k) ; k++ ; if(k
View more...

Comments

Copyright ©2017 KUPDF Inc.
SUPPORT KUPDF