skip to content
DokuWiki
User Tools
Log In
Site Tools
Search
Tools
Show pagesource
Old revisions
Backlinks
Recent Changes
Media Manager
Sitemap
Log In
>
Recent Changes
Media Manager
Sitemap
Trace:
•
srcset
•
calc
•
index
livres:programming_in_c:index
Programming in C - index
Introduction
Some Fundamentals
Programming
Higher-Level Languages
Operating Systems
Compiling Programs
Integrated Development Environments
Language Interpreters
Compiling and Running Your First Program
Compiling Your Program
Running Your Program
Understanding Your First Program
Displaying the Values of Variables
Comments
Exercises
Variables, Data Types, and Arithmetic Expressions
Working with Variables
Understanding Data Types and Constants
The Basic Integer Type int
The Floating Number Type float
The Extended Precision Type double
The Single Character Type char
The Boolean Data Type _Bool
long, long long, short, unsigned, and signed
Working with Arithmetic Expressions
Integer Arithmetic and the Unary Minus
Operator
The Modulus Operator
Integer and Floating-Point Conversions
The Assignment Operators
Types _Complex and _Imaginary
Exercises
Program Looping
The for Statement
Relational Operators
Aligning Output
Program Input
Nested for Loops
for Loop Variants
The while Statement
The do Statement
The break Statement
The continue Statement
Exercises
Making Decisions
The if Statement
The if-else Construct
Compound Relational Tests
Nested if Statements
The else if Construct
The switch Statement
Boolean Variables
The Conditional Operator
Exercises
Working with Arrays
Defining an Array
Using Array Elements as Counters
Generating Fibonacci Numbers
Using an Array to Generate Prime Numbers
Initializing Arrays
Character Arrays
Base Conversion Using Arrays
The const Qualifier
Multidimensional Arrays
Variable-Length Arrays
Exercises
Working with Functions
Defining a Function
Arguments and Local Variables
Function Prototype Declaration
Automatic Local Variables
Returning Function Results
Functions Calling Functions Calling...
Declaring Return Types and Argument Types
Checking Function Arguments
Top-Down Programming
Functions and Arrays
Assignment Operators
Sorting Arrays
Multidimensional Arrays
Global Variables
Automatic and Static Variables
Recursive Functions
Exercises
Working with Structures
A Structure for Storing the Date
Using Structures in Expressions
Functions and Structures
A Structure for Storing the Time
Initializing Structures
Compound Literals
Arrays of Structures
Structures Containing Structures
Structures Containing Arrays
Structure Variants
Exercises
Character Strings
Arrays of Characters
Variable-Length Character Strings
Initializing and Displaying Character Strings
Testing Two Character Strings for Equality
Inputting Character Strings
Single-Character Input
The Null String
Escape Characters
More on Constant Strings
Character Strings, Structures, and Arrays
A Better Search Method
Character Operations
Exercises
Pointers
Defining a Pointer Variable
Using Pointers in Expressions
Working with Pointers and Structures
Structures Containing Pointers
Linked Lists
The Keyword const and Pointers
Pointers and Functions
Pointers and Arrays
A Slight Digression About Program Optimization
Is It an Array or Is It a Pointer
Pointers to Character Strings
Constant Character Strings and Pointers
The Increment and Decrement Operators Revisited
Operations on Pointers
Pointers to Functions
Pointers and Memory Addresses
Exercises
Operations on Bits
Bit Operators
The Bitwise AND Operator
The Bitwise Inclusive-OR Operator
The Bitwise Exclusive-OR Operator
The Ones Complement Operator
The Left Shift Operator
The Right Shift Operator
A Shift Function
Rotating Bits
Bit Fields
Exercises
The Preprocessor
define Statement
Program Extendability
Program Portability
More Advanced Types of Definitions
Operator
# Operator
include Statement
System Include Files
Conditional Compilation
ifdef , #endif , #else , and #ifndef Statements
if and #elif Preprocessor Statements
undef Statement
Exercises
More on Data Types
Enumerated Data Types
The typedef Statement
Data Type Conversions
Sign Extension
Argument Conversion
Exercises
Working with Larger Programs
Dividing Your Program into Multiple Files
Compiling Multiple Source Files from the Command Line
Communication Between Modules
External Variables
Static Versus Extern Variables and Functions
Using Header Files Effectively
Other Utilities for Working with Larger Programs
The make Utility
The cvs Utility
ar , grep , sed , and so on
Input and Output Operations in C
getchar and putchar
printf and scanf
The printf Function
The scanf Function
Input and Output Operations with Files
Redirecting I/O to a File
End of File
Special Functions for Working with Files
The fopen Function
The getc and putc Functions
The fclose Function
The feof Function
The fprintf and fscanf Functions
The fgets and fputs Functions
stdin , stdout , and stderr
The exit Function
Renaming and Removing Files
Exercises
Miscellaneous and Advanced Features
Miscellaneous Language Statements
The goto Statement
The null Statement
Working with Unions
The Comma Operator
Type Qualifiers
The register Qualifier
The volatile Qualifier
The restrict Qualifier
Command-Line Arguments
Dynamic Memory Allocation
The calloc and malloc Functions
The sizeof Operator
The free Function
Debugging Programs
Debugging with the Preprocessor
Debugging Programs with gdb
Working with Variables
Source File Display
Controlling Program Execution
Getting a Stack Trace
Calling Functions and Setting Arrays and Structures
Getting Help with gdb Commands
Odds and Ends
Object-Oriented Programming
What Is an Object Anyway
Instances and Methods
Writing a C Program to Work with Fractions
Defining an Objective-C Class to Work with Fractions
Defining a C++ Class to Work with Fractions
Class to Work with Fractions
annexes
C Language Summary
Digraphs and Identifiers
Digraph Characters
Identifiers
Comments
Constants
Integer Constants
Floating-Point Constants
Character Constants
Character String Constants
Enumeration Constants
Data Types and Declarations
Declarations
Basic Data Types
Derived Data Types
Enumerated Data Types
The typedef Statement
Type Modifiers const , volatile , and restrict
Expressions
Summary of C Operators
Constant Expressions
Arithmetic Operators
Logical Operators
Relational Operators
Bitwise Operators
Increment and Decrement Operators
Assignment Operators
Conditional Operators
Type Cast Operator
sizeof Operator
Comma Operator
Basic Operations with Arrays
Basic Operations with Structures
Basic Operations with Pointers
Compound Literals
Conversion of Basic Data Types
Storage Classes and Scope
Functions
Variables
Functions
Function Definition
Function Call
Function Pointers
Statements
Compound Statements
The break Statement
The continue Statement
The do Statement
The for Statement
The goto Statement
The if Statement
The null Statement
The return Statement
The switch Statement
The while Statement
The Preprocessor
Trigraph Sequences
Preprocessor Directives
Predefined Identifiers
The Standard C Library
Standard Header Files
<stddef.h>
<limits.h>
<stdbool.h>
<float.h>
<stdint.h>
String Functions
Memory Functions
Character Functions
I/O Functions
In-Memory Format Conversion Functions
String-to-Number Conversion
Dynamic Memory Allocation Functions
Math Functions
Complex Arithmetic
General Utility Functions
C Compiling Programs with gcc
General Command Format
Command-Line Options
Common Programming Mistakes
Resources
livres/programming_in_c/index.txt
· Last modified: 2016/11/19 12:59 by
leo
Page Tools
Show pagesource
Old revisions
Backlinks
Back to top