¿Quieres vender uno?

Sams Teach Yourself C en 21 días [con CDROM]-

Texto original
Sams Teach Yourself C in 21 Days [With CDROM]
Texto original
by Jones, Bradley L.; Aitken, Peter;... | PB | Good
Estado:
En buen estado
Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, ... Más informaciónacerca del estado
2 disponibles / 5 vendidos
Precio:
USD5,95
Aproximadamente5,55 EUR
Respira tranquilidad. Envíos y devoluciones gratis.
Envío:
Gratis Economy Shipping. Ver detallespara el envío
Ubicado en: Aurora, Illinois, Estados Unidos
Entrega:
Entrega prevista entre el mar. 25 jun. y el vie. 28 jun. a 43230
Las fechas previstas de entrega (se abre en una nueva ventana o pestaña) incluyen el tiempo de manipulación del vendedor, el código postal de origen, el código postal de destino y la hora de aceptación, y dependen del servicio de envío seleccionado y de que el pago se haya hecho efectivoel pago se haya hecho efectivo (se abre en una nueva ventana o pestaña). Los plazos de entrega pueden variar, especialmente en épocas de mucha actividad.
Devoluciones:
30 días para devoluciones. El vendedor paga el envío de la devolución. Ver detalles- Más información sobre devoluciones
Pagos:
     

Compra con confianza

Garantía al cliente de eBay
Si no recibes el artículo que has pedido, te devolvemos el dinero. 

Información del vendedor

Registrado como vendedor profesional
El vendedor asume toda la responsabilidad de este anuncio.
N.º de artículo de eBay:374124522909
Última actualización el 08 jun 2024 05:57:04 H.EspVer todas las actualizacionesVer todas las actualizaciones

Características del artículo

Estado
En buen estado
Libro que se ha leído pero que está en buen estado. Daños mínimos en la tapa, incluidas rozaduras, pero sin roturas ni agujeros. Es posible que no incluya sobrecubierta para tapas duras. Tapa muy poco desgastada. La mayoría de las páginas están en buen estado con muy pocas arrugas o roturas. El texto subrayado a lápiz es prácticamente inexistente, no hay texto resaltado ni anotaciones en los márgenes. No faltan páginas. Consulta el anuncio del vendedor para obtener más información y la descripción de cualquier posible imperfección. Ver todas las definiciones de estadose abre en una nueva ventana o pestaña
Notas del vendedor
“Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, ...
Binding
Paperback
Weight
3 lbs
Product Group
Book
IsTextBook
Yes
ISBN
0672324482
Subject Area
Computers
Publication Name
C in 21 Days
Publisher
Pearson Education
Item Length
9 in
Subject
Programming Languages / C
Publication Year
2002
Series
Sams Teach Yourself Ser.
Type
Textbook
Format
CD-ROM / Trade Paperback
Language
English
Item Height
2 in
Author
Peter Aitken, Bradley L. Jones
Features
Revised
Item Weight
56.7 Oz
Item Width
7.5 in
Number of Pages
960 Pages

Acerca de este producto

Product Information

In just 21 days, you'll have all the skills you need to get started with C. With this complete tutorial, you'll master the basics and them move on to the more advanced features and concepts.Understand the fundamentals of C.Master all the new and advanced features that C offers.Learn how to effectively use the latest tools and features of C, by following practical, real-world examples.Includes a CD with all code examples and an ANSI-compliant C compiler."IMPORTANT NOTE: Windows XP or 32-bit Windows 7 recommended -- will not run on 64-bit Windows systems "

Product Identifiers

Publisher
Pearson Education
ISBN-10
0672324482
ISBN-13
9780672324482
eBay Product ID (ePID)
2292818

Product Key Features

Number of Pages
960 Pages
Publication Name
C in 21 Days
Language
English
Subject
Programming Languages / C
Publication Year
2002
Features
Revised
Type
Textbook
Author
Peter Aitken, Bradley L. Jones
Subject Area
Computers
Series
Sams Teach Yourself Ser.
Format
CD-ROM / Trade Paperback

Dimensions

Item Height
2 in
Item Weight
56.7 Oz
Item Length
9 in
Item Width
7.5 in

Additional Product Features

Edition Number
6
LCCN
2002-106120
Dewey Edition
21
Target Audience
Trade
Illustrated
Yes
Dewey Decimal
005.13/3
Edition Description
Revised Edition
Lc Classification Number
Qa76.73.C15j656 2003
Table of Content
Introduction.WEEK 1. AT A GLANCE.Where You're Going.Day 1. Getting Started with C.A Brief History of the C Language. Why Use C? Preparing to Program. The Program Development Cycle. Your First C Program.Type & Run 1. Printing Your Listings.The First Type & Run.Day 2. The Components of a C Program.A Short C Program. The Program's Components. A Review of the Parts of a Program.Day 3. Storing Information: Variables and Constants.Understanding Your Computer's Memory. Storing Information with Variables. Numeric Variable Types. Constants.Day 4. The Pieces of a C Program: Statements, Expressions, and Operators.Statements. Understanding Expressions. Operators. The if Statement. Evaluating Relational Expressions. The Logical Operators. More on True/False Values. Operator Precedence Revisited.Type & Run 2. Find the Number. Day 5. Packaging Code in Functions.What Is a Function? How a Function Works. Functions and Structured Programming. Writing a Function. Passing Arguments to a Function. Calling Functions. Where the Functions Belong. Working with Inline Functions.Day 6. Basic Program Control.Arrays: The Basics. Controlling Program Execution. Nested Loops.Day 7. Fundamentals of Reading and Writing Information.Displaying Information On-Screen. Inputting Numeric Data with scanf(). Using Trigraph Sequences.Week 1 In Review.WEEK 2 AT A GLANCE.Where You're Going.Day 8. Using Numeric Arrays.What Is an Array? Naming and Declaring Arrays.Day 9. Understanding Pointers.What Is a Pointer? Pointers and Simple Variables. Pointers and Variable Types. Pointers and Arrays. Pointer Cautions. Array Subscript Notation and Pointers. Passing Arrays to Functions.Type & Run 3. Pausing for a Second or Two. Day 10. Working with Characters and Strings.The char Data Type. Using Character Variables. Using Strings. Strings and Pointers. Strings Without Arrays. Displaying Strings and Characters. Reading Strings from the Keyboard.Day 11. Implementing Structures, Unions, and TypeDefs.Working with Simple Structures. Using Structures That are More Complex. Arrays of Structures. Initializing Structures. Structures and Pointers. Understanding Unions. Creating Synonyms for Structures with typedef.Day 12. Understanding Variable Scope.What Is Scope? Creating External Variables. Creating Local Variables. Local Variables and the main() Function. Which Storage Class Should You Use? Local Variables and Blocks.Type & Run 4. Secret Messages. Day 13. Advanced Program Control.Ending Loops Early. The goto Statement. Infinite Loops. The switch Statement. Exiting the Program. Executing Operating System Commands in a Program.Day 14. Working with the Screen, Printer, and Keyboard.Streams and C. Using C's Stream Functions. Accepting Keyboard Input. Controlling Output to the Screen. Redirecting Input and Output. When to Use fprintf().Week 2 In Review.WEEK 3 AT A GLANCE.Where You're Going.Day 15. Pointers: Beyond the Basics.Declaring Pointers to Pointers. Pointers and Multidimensional Arrays. Working with Arrays of Pointers. Working with Pointers to Functions. Bonus Section: Understanding Linked Lists.Day 16. Using Disk Files.Relating Streams to Disk Files. Understanding the Types of Disk Files. Using Filenames. Opening a File. Writing and Reading File Data. File Buffering: Closing and Flushing Files. Understanding Sequential Versus Random File Access. Detecting the End of a File. File Management Functions. Using Temporary Files.Type & Run 5. Counting Characters. Day 17. Manipulating Strings.Determining String Length. Copying Strings. Concatenating
Copyright Date
2003

Descripción del artículo del vendedor

Información de vendedor profesional

Thrift Books Global, LLC
TB Thrift Books
18300 Cascade Ave S
Ste 150
98188 Seattle, WA
United States
Mostrar información de contacto
:ocinórtcele oerroCmoc.skoobtfirht@yabe.selas
Certifico que todas mis actividades de venta cumplirán todas las leyes y reglamentos de la UE.
ThriftBooks

ThriftBooks

99% de votos positivos
17,7 millones artículos vendidos
Visitar tiendaContactar
Suele responder en 24 horas

Valoraciones detalladas sobre el vendedor

Promedio durante los últimos 12 meses

Descripción precisa
4.9
Gastos de envío razonables
5.0
Rapidez de envío
5.0
Comunicación
4.9
Registrado como vendedor profesional

Votos de vendedor (5.224.122)

m***u (1369)- Votos emitidos por el comprador.
Mes pasado
Compra verificada
Best buy. Rare find. Fast shipper.
Ver todos los votos

Valoraciones y opiniones del producto

Todavía no hay valoraciones ni opiniones
Sé el primero en escribir una opinión.