MDRayhanulIslamSayke
5,137 views
16 slides
Aug 19, 2016
Slide 1 of 16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
About This Presentation
its helps to know built in function
Size: 192.1 KB
Language: en
Added: Aug 19, 2016
Slides: 16 pages
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 :