HPlogo HP C/HP-UX Reference Manual: Workstations and Servers > Chapter 10 HP C/HP-UX Implementation Topics

Structures and Unions

» 

Technical documentation

Complete book in PDF

 » Table of Contents

 » Index

Structure or union references that are not fully qualified (see example below) are flagged with an error by the compiler.

struct{
int j;
struct {int i;}in;
} out;
out.i=3;

The correct statement for the example above is out.in.i = 3;.