Flylib.com
C Programming on the IBM PC (C Programmers Reference Guide Series)
C Programming on the IBM PC (C Programmers Reference Guide Series)
ISBN: 0673462897
EAN: 2147483647
Year: 2002
Pages: 539
Authors:
S. Scott Zimmerman
BUY ON AMAZON
Table of Contents
BackCover
CC Programmer s Reference, Third Edition
Introduction
Chapter 1: Data Types, Variables, and Constants
Declaring Variables
Identifiers
Classes
Inheritance
Structures
Unions
Enumerations
C Tags
The Storage Class Specifiers
Type Qualifiers
Arrays
Defining New Type Names Using typedef
Constants
Chapter 2: Functions, Scopes, Namespaces, and Headers
Recursion
Function Overloading
Default Arguments
Prototypes
Understanding Scopes and Variable Lifetimes
Namespaces
The main( ) Function
Function Arguments
Constructors and Destructors
Function Specifiers
Linkage Specification
The C and C Standard Libraries
Chapter 3: Operators
Relational and Logical Operators
The Bitwise Operators
Pointer Operators
Assignment Operators
The ? Operator
Member Operators
sizeof
The Cast
The IO Operators
The :: Scope Resolution Operator
new and delete
typeid
Operator Overloading
Operator Precedence Summary
Chapter 4: The Preprocessor and Comments
define
error
if, ifdef, ifndef, else, elif, and endif
include
line
pragma
undef
The and Preprocessor Operators
Predefined Macro Names
Comments
C99 Variable Argument Lists
Chapter 5: Keyword Summary
asm
auto
bool
_Bool
break
case
catch
char
class
_Complex
const
const_cast
continue
default
delete
do
double
dynamic_cast
else
enum
explicit
export
extern
false
float
for
friend
goto
if
_Imaginary
inline
int
long
mutable
namespace
new
operator
private
protected
public
register
reinterpret_cast
restrict
return
short
signed
sizeof
static
static_cast
struct
switch
template
this
throw
true
try
typedef
typeid
typename
union
unsigned
using
virtual
void
volatile
wchar_t
while
Chapter 6: The Standard C IO Functions
clearerr
fclose
feof
ferror
fflush
fgetc
fgetpos
fgets
fopen
fprintf
fputc
fputs
fread
freopen
fscanf
fseek
fsetpos
ftell
fwrite
getc
getchar
gets
perror
printf
putc
putchar
puts
remove
rename
rewind
scanf
setbuf
setvbuf
snprintf
sprintf
sscanf
tmpfile
tmpnam
ungetc
vprintf, vfprintf, vsprintf, and vsnprintf
vscanf, vfscanf, and vsscanf
Chapter 7: The String and Character Functions
isalnum
isalpha
isblank
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
isupper
isxdigit
memchr
memcmp
memcpy
memmove
memset
strcat
strchr
strcmp
strcoll
strcpy
strcspn
strerror
strlen
strncat
strncmp
strncpy
strpbrk
strrchr
strspn
strstr
strtok
strxfrm
tolower
toupper
Chapter 8: The C Mathematical Functions
acos
acosh
asin
asinh
atan
atanh
atan2
cbrt
ceil
copysign
cos
cosh
erf
erfc
exp
exp2
expm1
fabs
fdim
floor
fma
fmax
fmin
fmod
frexp
hypot
ilogb
ldexp
lgamma
llrint
llround
log
log1p
log10
log2
logb
lrint
lround
modf
nan
nearbyint
nextafter
nexttoward
pow
remainder
remquo
rint
round
scalbn
scalbln
sin
sinh
sqrt
tan
tanh
tgamma
trunc
Chapter 9: The C Mathematical Functions
acos
asin
atan
atan2
atan
atan2
ceil
cos
cosh
exp
fabs
floor
fmod
frexp
ldexp
log
log10
modf
pow
sin
sinh
sqrt
tan
tanh
Chapter 10: Time, Date, and Localization Functions
asctime
clock
ctime
difftime
gmtime
localeconv
localtime
mktime
setlocale
strftime
time
Chapter 11: The Dynamic Allocation Functions
calloc
free
malloc
realloc
Chapter 12: Miscellaneous Functions
abort
abs
assert
atexit
atof
atoi
atol
atoll
bsearch
div
exit
_Exit
getenv
labs
ldiv
llabs
lldiv
longjmp
mblen
mbstowcs
mbtowc
qsort
raise
rand
setjmp
signal
srand
strtod
strtof
strtol
strtold
strtoll
strtoul
strtoull
system
va_arg, va_start, va_end, and va_copy
wcstombs
wctomb
Chapter 13: The Wide-Character Functions
The Wide-Character Classification Functions
The Wide-Character IO Functions
The Wide-Character String Functions
Wide-Character String Conversion Functions
Wide-Character Array Functions
MultibyteWide-Character Conversion Functions
Chapter 14: The Old-Style C IO System
The Basic Stream Classes
C s Predefined Streams
The Format Flags
The Old-Style Iostream Functions
bad
clear
eatwhite
eof
fail
fill
flags
flush
fstream, ifstream, and ofstream
gcount
get
getline
good
gnore
open
peek
precision
put
putback
rdstate
read
seekg and seekp
setf
setmode
str
strstream, istrstream, and ostrstream
sync_with_stdio
tellg and tellp
unsetf
width
write
Chapter 15: The ANSIISO Standard C IO Classes
The Standard C IO Classes
C s Predefined Streams
The IO Headers
The Format Flags
The IO Manipulators
Several Data Types
The ANSIISO Standard IO Functions
bad
clear
eof
exceptions
fail
fill
flags
flush
fstream, ifstream, and ofstream
gcount
get
getline
good
ignore
open
peek
precision
put
putback
rdstate
read
readsome
seekg and seekp
setf
setstate
str
stringstream, istringstream, and ostringstream
sync_with_stdio
tellg and tellp
unsetf
width
write
Chapter 16: The C Standard Template Library
The Container Classes
bitset
deque
list
map
multimap
multiset
queue
priority_queue
set
stack
vector
The STL Algorithms
adjacent_find
binary_search
copy
copy_backward
count
count_if
equal
equal_range
fill and fill_n
find
find_end
find_first_of
find_if
for_each
generate and generate_n
includes
inplace_merge
iter_swap
lexicographical_compare
lower_bound
make_heap
max
max_element
merge
min
min_element
mismatch
next_permutation
nth_element
partial_sort
partial_sort_copy
partition
pop_heap
prev_permutation
push_heap
random_shuffle
remove, remove_if, remove_copy, and remove_copy_if
replace, replace_if, replace_copy, and replace_copy_if
reverse and reverse_copy
rotate and rotate_copy
search
search_n
set_difference
set_intersection
set_symmetric_difference
set_union
sort
sort_heap
stable_partition
stable_sort
swap
swap_ranges
transform
unique and unique_copy
upper_bound
Chapter 17: The C String, Exception, Complex, and Pair Classes
Exceptions
The complex Class
The pair Class
Chapter 18: Library Features Added by C99
The Floating-Point Environment Library
Integer Format Conversion Functions
Type-Generic Math Macros
Chapter 19: The .NET Managed Extensions to C
The .NET Keyword Extensions
Preprocessor Extensions
The attribute Attribute
Compiling Managed C
Index
Index_A
Index_B
Index_C
Index_D
Index_E
Index_F
Index_G
Index_H
Index_I
Index_J
Index_K
Index_L
Index_M
Index_N
Index_O
Index_P
Index_Q
Index_R
Index_S
Index_T
Index_U
Index_V
Index_W
Index_X
Page #535 (Index)
Page #536 (Index)
Page #537 (Index)
Page #538 (Index)
C Programming on the IBM PC (C Programmers Reference Guide Series)
ISBN: 0673462897
EAN: 2147483647
Year: 2002
Pages: 539
Authors:
S. Scott Zimmerman
BUY ON AMAZON
Agile Project Management: Creating Innovative Products (2nd Edition)
Our Journey
Deliver Customer Value
Phase: Close
Phase: Explore
Practice: Daily Team Integration Meetings
Certified Ethical Hacker Exam Prep
Footprinting and Scanning
Picking the Right Platform
Sniffers
Wireless LANs
Buffer Overflows
Cisco IP Communications Express: CallManager Express with Cisco Unity Express
The Cisco 7940G and 7960G IP Phones
Using Private Lines
Stonevoice Voice Mail
Configuring Cisco UE Voice Mail
Table vm_job
Practical Intrusion Analysis: Prevention and Detection for the Twenty-First Century: Prevention and Detection for the Twenty-First Century
Understanding Intrusion Detection
Internet Security Systems RealSecure
Cisco Secure IDS
Laws, Standards, and Organizations
The Future of Intrusion Detection and Prevention
Service-Oriented Architecture (SOA): Concepts, Technology, and Design
Objectives of this book
Services (as Web services)
Policies
Introduction to service-oriented design
SOA support in .NET
Visual Studio Tools for Office(c) Using C# with Excel, Word, Outlook, and InfoPath
Conclusion
Ways to Customize Word
Working with the Range Object
Application-Level Events
Writing a COM Add-In Using Visual Studio
flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net
Privacy policy
This website uses cookies. Click
here
to find out more.
Accept cookies