




























































































Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
c program float charchter integer
Typology: Thesis
1 / 292
This page cannot be seen from the preview
Don't miss anything!





























































































C
Programs with Solutions
S. ANANDAMURUGAN M.E., (Ph.D)., MISTE., MACEEE., Senior Lecturer, Department of Computer Science & Engineering, Kongu Engineering College, Perundurai Tamil Nadu
UNIVERSITY SCIENCE PRESS
BANGALORE (^) • CHENNAI (^) • COCHIN (^) • GUWAHATI (^) • HYDERABAD JALANDHAR (^) • KOLKATA (^) • LUCKNOW (^) • MUMBAI (^) • PATNA RANCHI (^) • NEW DELHI
Dedicated to My Son Master A. Shrikarthick
C language is one of the most popular computer languages today because it is a structured, high level, machine independent language. It allows software developers to develop programs without worrying about the hardware platforms where they will be implemented. C is called a high level, compiler language. The aim of any high level computer language is to provide an easy and natural way of giving a programme of instructions to a computer.
C is one of a large number of high level languages which can be used for general purpose programming, i.e., anything from writing small programs for personal amusement to writing complex applications. It is unusual in several ways. Before C, high level languages were criticized by machine code programmers because they shielded the user from the working details of the computer. The C language has been equipped with features that allow programs to be organized in an easy and logical way. This is vitally important for writing lengthy programs because complex problems are only manageable with a clear organization and program structure.
C allows meaningful variable names and meaningful function names to be used in programs without any loss of efficiency and it gives a complete freedom of style, it has a set of very flexible loop constructions and neat ways of making decisions. These provide an excellent basis for controlling the flow of programs. Another feature of C is the way it can express ideas concisely. The richness of a language shapes what it can talk about. C gives us the apparatus to build neat and compact programs. C tries to make the best of a computer by linking as closely as possible to the local environment.
The increasing popularity of C is probably due to its many desirable qualities. It is a robust language whose rich set of built-in functions and operators can be used to write any complex program. The C compiler combines the capabilities of an assembly language with the features of a high-level language and therefore it is well suited for writing both system software and business packages. Programs written in C are efficient and fast. This is due to its variety of data types and powerful operators. C is highly portable. This means that C programs written for one computer can be run on another with little or no modification. Another feature of C is its ability to extend itself.
1
C CONCEPTS
C is a remarkable language. Designed originally by Dennis Ritchie, working at AT&T Bell Laboratories in New Jersey, it has increased in use until now it may well be one of the most widely- written computer languages in the world. C is a structured language. It allows variety of programs in small modules. It is easy for debugging, testing, and maintenance if a language is a structured one.
Include header file section Global declaration section main() { Declaration part Executable part } User-defined functions { Statements }
C program depends upon some header files for function definition that are used in program. Each header file by default is extended with .h. The header file should be included using # include directive as given here.
This section declares some variables that are used in more than one function. These variables are known as global variables. This section must be declared outside of all the functions.
Every program written in C language must contain main () function. The function main() is a starting point of every C program. The execution of the program always begins with the function main ().
The declaration part declares the entire variables that are used in executable part. The initialisations of variables are also done in this section. Initialisation means providing initial value to the variables.
" Quotation mark < Less than ! Exclamation mark > Greater than | Vertical bar () Parenthesis left/right / Slash [ ] Bracket left/right \ Back slash {} Braces left/right ~ Tilde % Percent _ Underscore # Number sign or Hash $ Dollar = Equal to ? Question mark @ At the rate
Delimiters Use : Colon Useful for label ; Semicolon Terminates the statement ( ) Parenthesis Used in expression and function [ ] Square Bracket Used for array declaration { } Curly Brace Scope of the statement
, Comma Variable separator
Auto Double Int Struct Break Else Long Switch Case Enum Register Typedef Char Extern Return Union Const Float Short Unsigned Continue For Signed Void Default Goto Sizeof Volatile Do If Static while
Identifiers are names of variables, functions, and arrays. They are user-defined names, consisting sequence of letters and digits, with the letter as the first character.
Values do not change during the execution of the program Types:
1. Numerical constants: — Integer constants These are the sequence of numbers from 0 to 9 without decimal points or fractional part or any other symbols. It requires minimum two bytes and maximum four bytes. Eg: 10,20, + 30, – 14 — Real constants It is also known as floating point constants. Eg: 2.5, 5. 2. Character constants: — Single character constants A character constant is a single character. Characters are also represented with a single digit or a single special symbol or white space enclosed within a pair of single quote marks Eg: ‘a’, ‘8’, “ ”. — String constants String constants are sequence of characters enclosed within double quote marks. Eg: “Hello”, “india”, “444”
It is a data name used for storing a data value. Its value may be changed during the program execution. The value of variables keeps on changing during the execution of a program.
Data type Size (Bytes) Range Format Specifiers Char 1 – 128 to 127 %c Unsigned char 1 0 to 255 %c
— The unformatted input/output functions only work with the charcter data type Input Output getch() putch() getche() putchar() getchar() put() gets()
It checks the given condition and then executes its sub-block. The decision statement decides the statement to be executed after the success or failure of a given condition. Types:
Statement Syntax If statement if(condition) Statement; If-else statement If (condition) { Statement 1; Statement 2; } else { Statement 3; Statement 4; } Nested if-else statement If (condition) {
Statement 1; Statement 2; } Else if (condition) { Statement 3; Statement 4; } Else { Statement 5; Statement 6; } Break statement Break; Continue statement Continue; Goto statement goto label; Switch() statement Switch (variable or expression) { Case constant A: Statement; Break; Case constant B: Statement; Break; Default: Statement; }
Loop is a block of statements which are repeatedly executed for certain number of times. Types
Operations
Character arrays are called strings. Group of characters, digits, symbols enclosed within quotation marks are called as strings.
Functions Description Strlen() Determines the length of a string Strcpy() Copies astring from source to destination Strncpy() Copies charcters of a string to another string upto the specified length Stricmp() Compares characters of two strings Strcmp() Compares characters of two strings upto the specified length Strncmp() Compares characters of two strings upto the specified length Strnicmp() Compares characters of two strings upto the specified length Strlwr() Converts uppercase characters of a string to lower case Strupr() Converts lowercase characters of a string to upper case Strdup() Duplicates a string Strchr() Determines the first occurrence of a given character in a string Strrchr() Determines the last occurrence of a given character in a string Strstr() Determines the first occurrence of a given string in another string Strcat() Appends source string to destination string Strrev() Reverses all characters of a string Strset() Sets all characters of a string with a given argument or symbol Strspn() Finds up to what length two strings are identical Strpbrk() Searches the first occurrence of the character in a given string and then displays the string starting from that charcter
It is a self-contained block or a sub program of one or more statements that performs a special task.
Function_name (argument/parameter) Argument declaration; { Local variable declaration; Statement1; Statement 2; Return (value); }
In this type, value of actual arguments is passed to the formal arguments and the operation is done on the formal arguments. Any change made in the formal argument does not effect the actual arguments because formal arguments are photo copies of actual arguments.
In this type, instead of passing values, addresses are passed. Function operates on address rather than values. Here the formal arguments are pointers to the actual argument.
A function is called repetitively by itself.
scanf(“%d”,&r); area=pirr; printf(“area of circle=%f ”,area); ci=2pir; printf(“circumference=%f ”,ci); getch(); } Output: enter radius of a circle: 5 area of circle=78. circumference=31. 3] Program to find the simple interest. #include #include void main() { int p,r,t,si; clrscr(); printf(“enter principle, Rate of interest & time to find simple interest: ”); scanf(“%d%d%d”,&p,&r,&t); si=(prt)/100; printf(“simple intrest= %d”,si);
getch();
} Output: enter principle, rate of interest & time to find simple interest: 500 5 2 simple interest=
4] Program to convert temperature from degree centigrade to Fahrenheit.
#include
#include
void main() {
float c,f; clrscr(); printf(“enter temp in centigrade: ”); scanf(“%f”,&c); f=(1.8c)+32; printf(“temp in Fahrenheit=%f ”,f); getch(); } Output: enter temp in centigrade: 32 temp in Fahrenheit=89. 5] Program to calculate sum of 5 subjects and find percentage. #include #include void main() { int s1,s2,s3,s4,s5,sum,total=500; float per; clrscr(); printf(“enter marks of 5 subjects: ”); scanf(“%d%d%d%d%d”,&s1,&s2,&s3,&s4,&s5); sum=s1+s2+s3+s4+s5; printf(“sum=%d”,sum); per=(sum100)/total; printf(“percentage=%f”,per); getch(); } Output: enter marks of 5 subjects: 60 65 50 60 60 sum= percentage=60. 6] Program to show swap of two no’s without using third variable. #include #include