1. Write a C program that accepts a number and square the number with the help of a function.
2. Write a C program to find the area and perimeter of a circle.
3. Write a C program to calculate the factorial of an integer
Function prototype: long factorial(int number);
4. Write a program with a function that takes two int parameters, adds them together, then returns the sum. The program should ask the user for two numbers, then call the function with the numbers as arguments, and tell the user the sum.
Function prototype: int calSum(int number1, int number2);
* Function:
Cấu trúc của function có dạng:
Kiểu dữ liệu trả về Tên hàm(kiểu dữ liệu và các biến số){Khối lệnh}
Để sử dụng hàm trong chương trình chính, trước tiên ta phải khai báo mẫu nguyên hàm có dạng:
Kiểu dữ liệu trả về Tên hàm(kiểu dữ liệu và các biến số);
Nguyên hàm sẽ có thêm dấu ";" đằng sau và không có khối lệnh.
Cấu trúc của function có dạng:
Kiểu dữ liệu trả về Tên hàm(kiểu dữ liệu và các biến số){Khối lệnh}
Để sử dụng hàm trong chương trình chính, trước tiên ta phải khai báo mẫu nguyên hàm có dạng:
Kiểu dữ liệu trả về Tên hàm(kiểu dữ liệu và các biến số);
Nguyên hàm sẽ có thêm dấu ";" đằng sau và không có khối lệnh.
No comments:
Post a Comment