Mastering C Pointers: Tools for Programming Power

Mastering C Pointers: Tools for Programming Power
ISBN-10
1483299430
ISBN-13
9781483299433
Category
Computers
Pages
163
Language
English
Published
2014-06-28
Publisher
Academic Press
Author
Robert J. Traister

Description

If you don't fully understand C pointers and how they are used, you're not getting the most out of C programming. This book features complete coverage on using and controlling C language pointers to make C applications more powerful and expressive. This new edition is completely updated and revised to reflect the changes that have been brought about with the full adoption of ANSI C. All discussions and program examples have been updated, and reading materials necessary for any modern ANSI C programmer have also been added. Includes one 3 1/2" disk containing all of the working programs and modules found in the book. System Requirements: 286 or higher IBM PC or compatible. * Includes three entirely new chapters and many new or revised programs covering the latest techniques and advances in C * Provides a 3.5" disk containing all of the working programs and modules found within the text * Explains pointers in a friendly, easy-to-follow style to allow for quick implentation of new techniques * Serves as a useful tool to both beginning and intermediate programmers for mastering pointers * Includes numerous examples to provide continued reinforcement of techniques

Other editions

Similar books

  • Understanding and Using C Pointers: Core Techniques for Memory Management
    By Richard M Reese

    With this practical book, you’ll learn how pointers provide the mechanism to dynamically manipulate memory, enhance support for data structures, and enable access to hardware.

  • C++ Pointers and Dynamic Memory Management
    By Michael C. Daconta

    int pages ; int copyright ; short read_flag ; public : Book ( ) ; Book ( char * intitle , char * inauthor , char * inpublisher , int inpages , int incopyright , short inread_flag ) ; ~ Book ( ) ; friend istream & operator >> ( istream ...

  • MASTERING ALGORITHMS WITH C. Avec une disquette
    By Kyle Loudon

    A comprehensive guide to understanding the language of C offers solutions for everyday programming tasks and provides all the necessary information to understand and use common programming techniques. Original. (Intermediate).

  • Mastering 'C' Programming
    By W. Arthur Chapman

    ... Skills British Politics Marketing Management Business Communication Mathematics Business Environment Microsoft Office C Programming Microsoft Windows , Novell C ++ Programming NetWare and UNIX Chemistry Modern British History COBOL ...

  • Mastering C++ Programming
    By Jeganathan Swaminathan

    About This Book Get acquainted with the latest features in C++ 17 Take advantage of the myriad of features and possibilities that C++ offers to build real-world applications Write clear and expressive code in C++, and get insights into how ...

  • C Programming in One Hour a Day, Sams Teach Yourself: Sams Teac Your C One Hour D_7
    By Peter Aitken, Dean Miller, Bradley L. Jones

    This edition strengthens its focus on C programming fundamentals, and adds new material on popular C-based object-oriented programming languages such as Objective-C. Filled with carefully explained code, clear syntax examples, and well ...

  • Mastering the C++17 STL: Make full use of the standard library components in C++17
    By Arthur O'Dwyer

    This book is your guide to the C++ standard library, including the very latest C++17 features. The book starts by exploring the C++ Standard Template Library in depth.

  • Mastering C++ Programming
    By W. Arthur Chapman

    This book introduces the fundamental constructs of C++ and provides a gentle introduction to the ideas of object oriented programming.

  • Mastering C++: An Introduction to C++ and Object-Oriented Programming for C and Pascal Programmers
    By Cay S. Horstmann

    This book is also available through the Introductory Engineering Custom Publishing System. If you are interested in creating a course-pack that includes chapters from this book, you can get further...

  • Mastering C Programs
    By J.B. Dixit

    array initialization * / num [ 0 ] = & a ; num [ 1 ] = & b ; num [ 2 ] = & c ; / * echo the data * / for ( i = 0 ; i < 3 ; i ++ ) printf ( " \ nThe pointer num [ % d ] points to value % d \ n " , i , * num [ i ] ) ; printf ( " \ n&nbsp;...