Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Elementary programming with C - Session 4: Input and output in C
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Elementary programming with C - Session 4: Input and output in C
Vĩnh Thụy
107
27
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Lecture Elementary programming with C - Session 4: Input and output in C. After completing this chapter, students will be able to: understand formatted I/O functions - scanf and printf, use character I/O functions - getchar and putchar. | Input and Output in 'C' Session 4 Input and Output in C Objectives To understand formatted I/O functions - scanf() and printf() To use character I/O functions - getchar() and putchar() Elementary Programming with C/Session 4/ of 27 Standard Input/Output In C, the standard library provides routines for input and output The standard library has functions for I/O that handle input, output, and character and string manipulation Standard input is usually the keyboard Standard output is usually the monitor (also called the console) Input and Output can be rerouted from or to files instead of the standard devices Elementary Programming with C/Session 4/ of 27 The Header File #include This is a preprocessor command stdio.h is a file and is called the header file contains the macros for many of the input/output functions used in ‘C’ printf(), scanf(), putchar(), getchar() functions are designed such that, they require the macros in stdio.h for proper execution Elementary Programming with C/Session 4/ of 27 Formatted Input/Output printf() – for formatted output scanf() – for formatted input Format specifiers specify the format in which the values of the variables are to be input and printed Elementary Programming with C/Session 4/ of 27 printf ()-1 used to display data on the standard output – console Syntax printf ( “control string”, argument list); The argument list consists of constants, variables, expressions or functions separated by commas There must be one format command in the control string for each argument in the list The format commands must match the argument list in number, type and order The control string must always be enclosed within double quotes, which are its delimiters Elementary Programming with C/Session 4/ of 27 The control string consists of one or more of three types of items: Text characters: consists of printable characters Format Commands: begins with a % sign and is followed by a format code - . | Input and Output in 'C' Session 4 Input and Output in C Objectives To understand formatted I/O functions - scanf() and printf() To use character I/O functions - getchar() and putchar() Elementary Programming with C/Session 4/ of 27 Standard Input/Output In C, the standard library provides routines for input and output The standard library has functions for I/O that handle input, output, and character and string manipulation Standard input is usually the keyboard Standard output is usually the monitor (also called the console) Input and Output can be rerouted from or to files instead of the standard devices Elementary Programming with C/Session 4/ of 27 The Header File #include This is a preprocessor command stdio.h is a file and is called the header file contains the macros for many of the input/output functions used in ‘C’ printf(), scanf(), putchar(), getchar() functions are designed such that, they require the macros in stdio.h for proper execution .
TÀI LIỆU LIÊN QUAN
Lecture Elementary programming with C - Session 1: Basics of C
Lecture Elementary programming with C - Session 4: Input and output in C
Lecture Elementary programming with C - Session 7: Arrays
Lecture Elementary programming with C - Session 2: Variables and data types
Lecture Elementary programming with C - Session 3: Operators and expressions
Lecture Elementary programming with C - Session 5: Condition
Lecture Elementary programming with C - Session 6: Loop
Lecture Elementary programming with C - Session 8: Pointers
Lecture Elementary programming with C - Session 9: Functions
Lecture Elementary programming with C - Session 10: Strings
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.