C - Functions and Libraries
C - Functions and Libraries
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Functions
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Overview
Function is a block of statements which performs a specific task, and can be called by others Each function has a name (not identical to any other), parameters (or arguments), and a return type Benefits:
Break down a program into smaller problems Reuse in multiple places or in multiple programs <return type> <function name>(<list of parameters>) { Declaration of local variables Statements }
Syntax:
Example
double sum(double x, double y) { double z = x+y; return z; } int main() { double x = 10, y = sum(2,3); printf("x + y = %g", sum(x,y)); return 0; }
Parameters and local variables are valid only in the scope of the function
4
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Global variables/constants: declared outside of all functions, have program scope, accessible from anywhere in program, and only destroyed when program ends Local: declared inside a function or block, exist only in that function/block, and destroyed when exit that function/block
Local variables/constants of same names hide those from a wider scope In C, local variables/constants must be declared on top of functions/blocks int x = 10, y = 20; int sum() { int z = x+y; return z; } int main() { int x = 1, y = 2; int z = sum(); return 0; }
Ex:
/* returns: 10+20 */
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Variables/constants in blocks
Variables/constants can be declared in statement blocks { }, and exists only in those blocks Ex:
int x = 1, y = 2; int sum(int x, int y) { return x+y; } int a = 1000, b = 2000; int main() { int x = 10, y = 20; { int x = 100, y = 200; x+y; } x+y; sum(a,b); return 0; }
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Exist only in one iteration of the loop, and will be recreated and reinitialized on next iteration Ex:
int x = 20; for (i=0; i<10; i++) { int y = 20; x++; y++; printf("%d %d\n", x, y); }
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Static variables
Local static variables: variables with local scope but exist during all the runtime of program, even when before entering and after exiting the function/block
int callCount() { static int count = 0; count++; return count; } static int tic_time = 0; void tic() { tic_time = clock(); } int toc() { return clock() - tic_time; }
8 Static
functions: self-study
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
return statement
int find(int number, int a[], int n) { int i; for (i=0; i<n; i++) if (number == a[i]) return i; return -1; } void copy(int *a, int *b, int n) { if (a==NULL || b==NULL || a==b || n==0) return; for (; n>0; n--) *a++ = *b++; }
return statement without parameter return statement at the end of function is not required
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Function parameters are temporary variables created on function calls and destroyed when functions end assigning values to parameters does not have effect on original variables void assign10(int x) { x = 10; } x (int) int main() { int a = 20; copy assign10(a); printf("a = %d", a); a return 0; } User pointers if desire to modify value of original variables
10
Pointer parameters are often used as an alternative way to return values to callers, as each function has only one realProgramming T1 2012/2013 return value EE3490E:
Dr. o Trung Kin Hanoi Univ. of Science and Technology
int* sum() {
copy a ch
/* error */
p
int* sum() {
not *z
copy p
*z
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Function prototype: used to declare functions before calls, but the their definitions are put lower usually declared on top of source files or in header files (.h files) Ex:
12
double sum(double x, double y); double prod(double x, double y); int main() { double x = 5., y = 10.; sum(x, y); prod(x, y); return 0; } double sum(double x, double y) { return x+y; } double prod(double x, double y) EE3490E: Programming T1 2012/2013 { return x*y; }
Dr. o Trung Kin Hanoi Univ. of Science and Technology
Recursive functions
Function pointers
Are pointers to functions a data type in C, usually used to call functions that are unspecified at writing time
double (*SomeOpt)(double, double); typedef double (*OptFunc)(double, double); OptFunc SomeOpt; double sum(double x, double y) { return x+y; } double prod(double x, double y) { return x*y; } int main() { double (*SomeOpt)(double, double) = ∑ SomeOpt(2., 5.); /* same as: sum(2., 5.); */ SomeOpt = prod; (*SomeOpt)(2., 5.); /* same as: prod(2., 5.); */ return 0; }
Ex:
Macros
Macros are named code fragments. Whenever the name is used, it is replaced by the contents of the macro.
#define ERROR { printf("Error, exit now!"); exit(-1); } int main(int argc, char* argv[]) { if (argc != 3) ERROR /* */ return 0; }
Macros are replaced when other macros of the same names is defined Remove (undefine) macros: #undef ERROR Check if a macro is defined or not:
15
Macros (cont.)
#define MIN(x,y) x<y ? x:y z = MIN(2,4); /* z = 2<4 ? 2:4; */ #define PI 3.1415 #define AREA(R) R*R*PI z = AREA(5); /* z = 5*5*3.1415; */ #define MUL(x,y) x*y z = MUL(2,4); /* z z = MUL(2+1,4); /* z z = 8/MUL(1+1,2); /* z #define MUL(x,y) ((x)*(y)) z = MUL(2+1,4); /* z z = 8/MUL(1+1,2); /* z #define SQR(x) ((x)*(x)) z = SQR(i); /* z z = SQR(i++); /* z
16
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Libraries
17
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Overview
Mt chng trnh c th c chia nh lm nhiu file, mi file cha mt nhm nhng hm lin quan ti mt phn ca chng trnh Mt s hm c th c dng trong nhiu chng trnh khc nhau th vin hm Mt th vin hm gm 2 phn:
File header c ui .h cha prototype cc hm c th dng c ca th vin File m ngun c ui .c cha ni dung cc hm, hoc file .obj, .lib nu c dch ra cc dng tng ng #include <ten_file.h> #include "ten_file.h" /* trong ng dn mc nh */ /* cng th mc vi file dch */
Dn hng #include c tc dng nh chn ni dung file c khai bo vo file ang dch v tr xut hin
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
18
Lu vi to v s dng file .h
Cc bin ton cc phi c khai bo trong file .c, nu mun c export th trong file .h khai bo thm bng extern:
extern int bien_toan_cuc; #include "abcd.h" #include <abcd.h> /* .h cng th mc */ /* .h trong th mc th vin */
19
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
area.h
#ifndef __AREA_H__ #define __AREA_H__ extern const double PI; double circle_area(double r); double ellipse_area(double r1, double r2); double square_area(double l); double rect_area(double l1, double l2); #endif const double PI = 3.1415; double circle_area(double r) { return r*r*PI; } double ellipse_area(double r1, double r2) { return r1*r2*PI; } double square_area(double l) { return l*l; } double rect_area(double l1, double l2) EE3490E: Programming T1 2012/2013 { return l1*l2; }
Dr. o Trung Kin Hanoi Univ. of Science and Technology
area.c
20
Input, output with screen, files, keyboard, Check for character class (digit, letter,) Character string processing Dynamic memory management Mathematic functions and constants Data conversion between numeric types and string, dynamic memory allocation, Time and date
21
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
Problems
1. 2. 3.
4.
Write a function to allocate memory and input values to an array of integers, then return the pointer to that array and no of elements Write prime() function that returns array of primes smaller than n Define an array of struct MenuItem { title, task function }, print a menu to screen, read users choice then execute the corresponding task Write a function to calculate the nth Fibonacci number defined as:
Fib0 = 0, Fib1 = 1 Fibn = Fibn-1 + Fibn-2 (n 2)
5.
6.
Define String type and write a library including some functions: initialization, copy, concatenation, search, Define a struct Shape then write a library including functions to calculate perimeter and area of shapes based on their types (circle, square, rectangle). Give two solutions: using switch structure and function pointer
EE3490E: Programming T1 2012/2013 Dr. o Trung Kin Hanoi Univ. of Science and Technology
22