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 2: Variables and data types
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Elementary programming with C - Session 2: Variables and data types
Xuân Hiền
133
22
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 2 "Variables and data types". After studying this chapter you will be able to understand: Discuss variables, differentiate between variables and constants, list the different data types and make use of them in c programs, discuss arithmetic operators. | Variables and Data Types Session 2 Objectives Discuss variables Differentiate between variables and constants List the different data types and make use of them in C programs Discuss arithmetic operators Variables Data Memory Each location in the memory is unique Variables allow to provide a meaningful name for the location in memory 15 Data in memory 15 Example A, B and C are variables in the pseudocode BEGIN DISPlAY ‘Enter 2 numbers’ INPUT A, B C = A + B DISPLAY C END Variable names takes away the need for a programmer to access memory locations using their address The operating system takes care of allocating space for the variables To refer to the value in the memory space, we need to only use the variable name Constants A constant is a value whose worth never changes Examples 5 numeric / integer constant 5.3 numeric / float constant ‘Black’ string constant ‘C’ Character constant Variables hold constant values The names of variables, functions, labels, and various other user defined objects are called identifiers Some correct identifier names arena s_count marks40 class_one Examples of erroneous identifiers 1sttest oh!god start. end Identifiers can be of any convenient length, but the number of characters in a variable that are recognized by a compiler varies from compiler to compiler Identifiers in C are case sensitive Identifier Names ! is invalid Guidelines for Naming Identifiers Variable names should begin with an alphabet Proper names should be avoided while naming variables The first character can be followed by alphanumeric characters A variable name should be meaningful and descriptive Confusing letters should be avoided Some standard variable naming convention should be followed while programming Keywords Keywords : All languages reserve certain words for their internal use Keywords hold a special meaning within the context of the particular language No problem of conflict as long as the keyword and the variable name can be distinguished. For . | Variables and Data Types Session 2 Objectives Discuss variables Differentiate between variables and constants List the different data types and make use of them in C programs Discuss arithmetic operators Variables Data Memory Each location in the memory is unique Variables allow to provide a meaningful name for the location in memory 15 Data in memory 15 Example A, B and C are variables in the pseudocode BEGIN DISPlAY ‘Enter 2 numbers’ INPUT A, B C = A + B DISPLAY C END Variable names takes away the need for a programmer to access memory locations using their address The operating system takes care of allocating space for the variables To refer to the value in the memory space, we need to only use the variable name Constants A constant is a value whose worth never changes Examples 5 numeric / integer constant 5.3 numeric / float constant ‘Black’ string constant ‘C’ Character constant Variables hold constant values The names of variables, functions, labels, and various other user .
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.