Answer to Question 2.12

/* Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
/* The C++ Answer Book */
/* Tony Hansen */
/* All rights reserved. */

001: typedef unsigned char uc;

002: typedef const unsigned char cuc;

003: typedef int *pi;

004: typedef char **ppc;

005: typedef char (*x)[][7];

006: typedef int *piv[7];

007: typedef int *(*pi7)[7];

008: typedef int *p[8][7];
Menu of Chapter 2 Answers
Answer to Question 2.14