ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Lenguaje de Programacion C, El - 2b0 Ed.

دانلود کتاب زبان برنامه نویسی C ، El - 2b0 Ed.

Lenguaje de Programacion C, El - 2b0 Ed.

مشخصات کتاب

Lenguaje de Programacion C, El - 2b0 Ed.

دسته بندی: برنامه نویسی: زبان های برنامه نویسی
ویرایش:  
نویسندگان: ,   
سری:  
ISBN (شابک) : 9688802050, 9789688802052 
ناشر: Prentice Hall 
سال نشر: 1995 
تعداد صفحات: 153 
زبان: Spanish 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 50 مگابایت 

قیمت کتاب (تومان) : 43,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 18


در صورت تبدیل فایل کتاب Lenguaje de Programacion C, El - 2b0 Ed. به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب زبان برنامه نویسی C ، El - 2b0 Ed. نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی درمورد کتاب به خارجی



فهرست مطالب

Contents
Preface
Preface to the first edition
Chapter 1 - A Tutorial Introduction
	1.1 Getting Started
	1.2 Variables and Arithmetic Expressions
	1.3 The for statement
	1.4 Symbolic Constants
	1.5 Character Input and Output
		1.5.1 File Copying
		1.5.2 Character Counting
		1.5.3 Line Counting
		1.5.4 Word Counting
	1.6 Arrays
	1.7 Functions
	1.8 Arguments - Call by Value
	1.9 Character Arrays
	1.10 External Variables and Scope
Chapter 2 - Types, Operators and Expressions
	2.1 Variable Names
	2.2 Data Types and Sizes
	2.3 Constants
	2.4 Declarations
	2.5 Arithmetic Operators
	2.6 Relational and Logical Operators
	2.7 Type Conversions
	2.8 Increment and Decrement Operators
	2.9 Bitwise Operators
	2.10 Assignment Operators and Expressions
	2.11 Conditional Expressions
	2.12 Precedence and Order of Evaluation
Chapter 3 - Control Flow
	3.1 Statements and Blocks
	3.2 If-Else
	3.3 Else-If
	3.4 Switch
	3.5 Loops - while and for
	3.6 Loops - do while
	3.7 Break and Continue
	3.8 Goto and Labels
Chapter 4 - Functions and Program Structure
	4.1 Basics of Functions
	4.2 Functions returning non-integers
	4.3 External Variables
	4.4 Scope Rules
	4.5 Header Files
	4.6 Static Variables
	4.7 Register Variables
	4.8 Block Structure
	4.9 Initialization
	4.10 Recursion
	4.11 The C preprocessor
		4.11.1 File Inclusion
		4.11.2 Macro Substitution
		4.11.3 Conditional Inclusion
Chapter 5 - Pointers and Arrays
	5.1 Pointers and Addresses
	5.2 Pointers and Function Arguments
	5.3 Pointers and Arrays
	5.4 Address Arithmetic
	5.5 Character Pointers and Functions
	5.6 Pointer Arrays: Pointers to Pointers
	5.7 Multidimensional Arrays
	5.8 Initialization of Pointer Arrays
	5.9 Pointers vs. Multidimensional Arrays
	5.10 Command-line Arguments
	5.11 Pointers to Functions
	5.12 Complicated Declarations
Chapter 6 - Structures
	6.1 Basics of Structures
	6.2 Structures and Functions
	6.3 Arrays of Structures
	6.4 Pointers to Structures
	6.5 Self-referential Structures
	6.6 Table Lookup
	6.7 Typedef
	6.8 Unions
	6.9 Bit-Fields
Chapter 7 - Input and Output
	7.1 Standard Input and Output
	7.2 Formatted Output - printf
	7.3 Variable-length Argument Lists
	7.4 Formatted Input - Scanf
	7.5 File Access
	7.6 Error Handling
	7.7 Line Input and Output
	7.8 Miscellaneous Functions
		7.8.1 String Operations
		7.8.2 Character Class Testing and Conversion
		7.8.3 Ungetc
		7.8.4 Command Execution
		7.8.5 Storage Management
		7.8.6 Mathematical Functions
		7.8.7 Random Number Generation
Chapter 8 - The UNIX System Interface
	8.1 File Descriptors
	8.2 Low Level I/O - Read and Write
	8.3 Open, Create, Close, Unlink
	8.4 Random Access - lseek
	8.5 Example - An implementation of fopen and getc
	8.6 Example - Listing Directories
	8.7 Example - A Storage Allocator
Appendix A - Reference Manual
Appendix B - Standard Library
Appendix C - Summary of Changes




نظرات کاربران