Alle Infos zum eBook verschenken
- Format: ePub
- Merkliste
- Auf die Merkliste
- Bewerten Bewerten
- Teilen
- Produkt teilen
- Produkterinnerung
- Produkterinnerung

Hier können Sie sich einloggen

Bitte loggen Sie sich zunächst in Ihr Kundenkonto ein oder registrieren Sie sich bei bücher.de, um das eBook-Abo tolino select nutzen zu können.
The C programming language is a popular language in industries as well as academics. Since its invention and standardized as ANSI C, several other standards known as C99, C11, and C17 were published with new features in subsequent years. This book covers all the traits of ANSI C and includes new features present in other standards. The content of this book helps a beginner to learn the fundamental concept of the C language. The book contains a step-by-step explanation of every program that allows a learner to understand the syntax and builds a foundation to write similar programs. The…mehr
- Geräte: eReader
- mit Kopierschutz
- eBook Hilfe
- Sisir Kumar JenaC Programming (eBook, PDF)46,95 €
- Ali AryaAnyone Can Code (eBook, ePUB)60,95 €
- Jeffrey L. NyhoffProcessing (eBook, ePUB)64,95 €
- Mathew V. K.Hybrid Genetic Optimization for IC Chips Thermal Control (eBook, ePUB)44,95 €
- Kuldeep Singh KaswanPython for Beginners (eBook, ePUB)49,95 €
- Mark C. LewisIntroduction to Programming and Problem-Solving Using Scala (eBook, ePUB)63,95 €
- Vijay Kumar SharmaPython Programming (eBook, ePUB)56,95 €
-
-
-
Features:
- Other than ANSI C, the book explains the new C standards like C99, C11, and C17.
- Most basic and easy-to-follow programs are chosen to explain the concepts and their syntax.
- More emphasis is given to the topics like Functions, Pointers, and Structures.
- Recursion is emphasized with numerous programming examples and diagrams.
- A separate chapter on the command-line argument and preprocessors is included that concisely explains their usage.
- Several real-life figures are taken to explain the concepts of dynamic memory allocation, file handling, and the difference between structure and union.
- The book contains more than 260 illustrations, more than 200 programs, and exercises at the end of each chapter.
This book serves as a textbook for UG/PG courses in science and engineering. The researcher, postgraduate engineers, and embedded software developers can also keep this book as reference material for their fundamental learning.
Dieser Download kann aus rechtlichen Gründen nur mit Rechnungsadresse in A, B, BG, CY, CZ, D, DK, EW, E, FIN, F, GR, HR, H, IRL, I, LT, L, LR, M, NL, PL, P, R, S, SLO, SK ausgeliefert werden.
- Produktdetails
- Verlag: Taylor & Francis eBooks
- Seitenzahl: 452
- Erscheinungstermin: 28. Dezember 2021
- Englisch
- ISBN-13: 9781000460582
- Artikelnr.: 63070338
- Verlag: Taylor & Francis eBooks
- Seitenzahl: 452
- Erscheinungstermin: 28. Dezember 2021
- Englisch
- ISBN-13: 9781000460582
- Artikelnr.: 63070338
- Herstellerkennzeichnung Die Herstellerinformationen sind derzeit nicht verfügbar.
Characteristics of a Computer System. . 1.3. History of Computer. . 1.4
Basic Computer Organization. 1.5 Computer Memory. 1.6 Introduction to
Operating System. 1.7 Review Questions. 2 Number System. 2.1 Introduction.
2.2 Positional Number System. 2.3 Number Conversion. 2.4 Review Questions.
. 3 Problem Solving through Flowchart and Algorithm. 2.1 Introduction. 2.2
Problem Solving Approach. 2.3 Algorithm Design. 2.4 Basics of an Algorithm.
2.5 Flowchart. 2.6 Example Problems. 2.7 Basics of Programming Language.
2.8 Review Questions. . 4 Introduction to C Programming. 4.1 Introduction.
4.2 History of C. 4.3 Executing a C Program. 4.4 Structure of a C Program.
4.5 Compilers and Editors to Execute C Program. 4.6 Review Questions. . 5
Constants, Variables, and Data Types. 5.1 Introduction. 5.2 C Character
Set. 5.3 Keywords. 5.4 Variables and Identifiers. 5.5 Data Types. 5.6
Declaration of Variables. 5.7 Constants. 5.8 Learn to Code Examples. 5.9
Escape Sequences. 5.10 Review Questions. . 6 Operators and Expressions.
6.1 Introduction. 6.2 Arithmetic Operator. 6.3 Relational Operator. 6.4
Assignment Operator. 6.5 Logical Operator. 6.6 Increment and Decrement
Operator. 6.7 Conditional Operator. 6.8 Bitwise Operator. 6.9 Special
Operators. 6.10 Expressions. 6.11 Type Conversion. 6.12 Operator Precedence
and Associativity. 6.13 Review Questions. . 7 Basic Input Output. 7.1
Introduction. 7.2 Unformatted Functions. 7.3 Formatted Functions. 7.4
Review Questions. . 8 Control Structure. 8.1 Introduction. 8.2 Selection
with if statement. 8.3 if-else Statement. 8.4 Nested if-else Statement. 8.5
If-else-if Ladder. 8.6 Compound Statement. 8.7 Multiway Selection with
switch Statement. 8.8 goto Statement . 8.9 Introduction to Looping. 8.10
while Loop. 8.11 do-while Loop. 8.12 for Loop. 8.13 Unconditional
branching: break and continue. 8.14 Review Questions. . 9 Function. 9.1
Introduction. 9.2 Need of functions. 9.3 Types of Function. 9.4 User
Defined Function. 9.5 Component and Working of a Function. 9.6 Categories
of a Function. 9.7 Recursion. 9.8 Storage Classes. 9.9 Review Question. .
10 Arrays and Strings. 10.1 Introduction. 10.2 Need of an Array. 10.3 Types
of Array. 10.4 One Dimensional Array. 10.5 Two Dimensional Array. 10.6
Multidimensional Array. 10.7 Character array: String. 10.8 String
Functions. 10.9 Review Questions. . 11 Pointers. 11.1 Introduction. 11.2
Basic Knowledge. 11.3 Pointer Variable. 11.4 Pointer to Pointer (Double
Pointer). 11.5 Void Pointer. 11.6 Null Pointer. 11.7 Constant Pointer. 11.8
Pointer Arithmetic. 11.9 Pointers and Functions. 11.10 Pointers and Arrays.
11.11 Passing Arrays to Function. 11.12 Pointers and Two Dimensional array.
11.13 Pointer and String. 11.14 Arrays of Pointers. 11.15 Pointers to
Function. 11.16 Review Questions. . 12 Structure and Union. 12.1
Introduction. 12.2 Declaring Structure. 12.3 Initializing structure. 12.4
Accessing Structure elements. 12.5 Learn to Code Examples. 12.6 Array of
Structures. 12.7 Structure within Structure (Nested Structure). 12.8 User
defined Data Type: typedef. 12.9 Pointers and Structures. 12.10 Structure
and Function. 12.11 Unions. 12.12 Structure VS Union. 12.13 Bit Fields.
12.14 Enumeration. 12.15 Review Questions. . 13 Dynamic Memory Allocation.
13.1 Introduction. 13.2 Types of Memory Allocation. 13.3 Dynamic Memory
Allocation Process. 13.4 Review Questions. . 14 File Handling. 14.1
Introduction. 14.2 Basics of File I/O. 14.3 Opening a File. 14.4 Closing a
File. 14.5 File Functions with Examples. 14.6 Review Questions. . 15 The
Preprocessor. 15.1 Introduction. 15.2 Preprocessor Directives. 15.3 Macro
Substitutions. 15.4 #include Preprocessor. 15.5 Conditional Preprocessors.
15.6 Other Preprocessor Directives. 15.7 Review Questions. . 16 Command
Line Arguments. 16.1 Introduction. 16.2 Executing a Program using Command
Prompt. 16.3 Fundamentals of Command Line Argument. 16.4 Using Command Line
Argument. 16.5 Review Questions.
Characteristics of a Computer System. . 1.3. History of Computer. . 1.4
Basic Computer Organization. 1.5 Computer Memory. 1.6 Introduction to
Operating System. 1.7 Review Questions. 2 Number System. 2.1 Introduction.
2.2 Positional Number System. 2.3 Number Conversion. 2.4 Review Questions.
. 3 Problem Solving through Flowchart and Algorithm. 2.1 Introduction. 2.2
Problem Solving Approach. 2.3 Algorithm Design. 2.4 Basics of an Algorithm.
2.5 Flowchart. 2.6 Example Problems. 2.7 Basics of Programming Language.
2.8 Review Questions. . 4 Introduction to C Programming. 4.1 Introduction.
4.2 History of C. 4.3 Executing a C Program. 4.4 Structure of a C Program.
4.5 Compilers and Editors to Execute C Program. 4.6 Review Questions. . 5
Constants, Variables, and Data Types. 5.1 Introduction. 5.2 C Character
Set. 5.3 Keywords. 5.4 Variables and Identifiers. 5.5 Data Types. 5.6
Declaration of Variables. 5.7 Constants. 5.8 Learn to Code Examples. 5.9
Escape Sequences. 5.10 Review Questions. . 6 Operators and Expressions.
6.1 Introduction. 6.2 Arithmetic Operator. 6.3 Relational Operator. 6.4
Assignment Operator. 6.5 Logical Operator. 6.6 Increment and Decrement
Operator. 6.7 Conditional Operator. 6.8 Bitwise Operator. 6.9 Special
Operators. 6.10 Expressions. 6.11 Type Conversion. 6.12 Operator Precedence
and Associativity. 6.13 Review Questions. . 7 Basic Input Output. 7.1
Introduction. 7.2 Unformatted Functions. 7.3 Formatted Functions. 7.4
Review Questions. . 8 Control Structure. 8.1 Introduction. 8.2 Selection
with if statement. 8.3 if-else Statement. 8.4 Nested if-else Statement. 8.5
If-else-if Ladder. 8.6 Compound Statement. 8.7 Multiway Selection with
switch Statement. 8.8 goto Statement . 8.9 Introduction to Looping. 8.10
while Loop. 8.11 do-while Loop. 8.12 for Loop. 8.13 Unconditional
branching: break and continue. 8.14 Review Questions. . 9 Function. 9.1
Introduction. 9.2 Need of functions. 9.3 Types of Function. 9.4 User
Defined Function. 9.5 Component and Working of a Function. 9.6 Categories
of a Function. 9.7 Recursion. 9.8 Storage Classes. 9.9 Review Question. .
10 Arrays and Strings. 10.1 Introduction. 10.2 Need of an Array. 10.3 Types
of Array. 10.4 One Dimensional Array. 10.5 Two Dimensional Array. 10.6
Multidimensional Array. 10.7 Character array: String. 10.8 String
Functions. 10.9 Review Questions. . 11 Pointers. 11.1 Introduction. 11.2
Basic Knowledge. 11.3 Pointer Variable. 11.4 Pointer to Pointer (Double
Pointer). 11.5 Void Pointer. 11.6 Null Pointer. 11.7 Constant Pointer. 11.8
Pointer Arithmetic. 11.9 Pointers and Functions. 11.10 Pointers and Arrays.
11.11 Passing Arrays to Function. 11.12 Pointers and Two Dimensional array.
11.13 Pointer and String. 11.14 Arrays of Pointers. 11.15 Pointers to
Function. 11.16 Review Questions. . 12 Structure and Union. 12.1
Introduction. 12.2 Declaring Structure. 12.3 Initializing structure. 12.4
Accessing Structure elements. 12.5 Learn to Code Examples. 12.6 Array of
Structures. 12.7 Structure within Structure (Nested Structure). 12.8 User
defined Data Type: typedef. 12.9 Pointers and Structures. 12.10 Structure
and Function. 12.11 Unions. 12.12 Structure VS Union. 12.13 Bit Fields.
12.14 Enumeration. 12.15 Review Questions. . 13 Dynamic Memory Allocation.
13.1 Introduction. 13.2 Types of Memory Allocation. 13.3 Dynamic Memory
Allocation Process. 13.4 Review Questions. . 14 File Handling. 14.1
Introduction. 14.2 Basics of File I/O. 14.3 Opening a File. 14.4 Closing a
File. 14.5 File Functions with Examples. 14.6 Review Questions. . 15 The
Preprocessor. 15.1 Introduction. 15.2 Preprocessor Directives. 15.3 Macro
Substitutions. 15.4 #include Preprocessor. 15.5 Conditional Preprocessors.
15.6 Other Preprocessor Directives. 15.7 Review Questions. . 16 Command
Line Arguments. 16.1 Introduction. 16.2 Executing a Program using Command
Prompt. 16.3 Fundamentals of Command Line Argument. 16.4 Using Command Line
Argument. 16.5 Review Questions.