Built in function

MDRayhanulIslamSayke 5,137 views 16 slides Aug 19, 2016
Slide 1
Slide 1 of 16
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16

About This Presentation

its helps to know built in function


Slide Content

Welcome To Your Presentation Topic Name : Built in Function

Presented By Group Member ID Tania Akter 0111-61-035 MD. Rayhanul Islam 0111-61-036 Saddam Hossain 0111-61-037

Function : A function is a group of statements that together perform a task.   A function is a block of code that performs a calculation and returns a value. Every C program has at least one function, which is  main()

Classification of Function : User define function Library function or Built-in function Function

What is Library Function or Built-in Function?? Built in functions are the functions that are provided by C library.  These functions perform file access, mathematical computations, graphics, memory management etc. Defined in a special header file.  A function that is built into an application and can be accessed by end-users.

Built-in Fuction Header Files:

< stdio.h > Library Functions Source Code :

< conio.h > Lbrary Functions Source Code :

< string.h > Library Functions Source Code:

< math.h > Library Functions Source Code :

< time.h > Library Functions Source Code :

Advantages : It helps in making the code very simple and much more easier to handle.  A function may be used by many other programs. You can use it over and over without retyping the code  Less code for more  Helps organize your code 

Disadvantages: I think functions are sometimes difficult to handle and can confuse the programmer in handling different tasks.

Programing in Built-in Function : #include< stdio.h > main() { printf ("Welcome To Your Presentation"); } Sample Output :

Thank you