#include "lib4.h" int main(int ac, char **av) { struct guha { int a, b; } c[3] = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; int i; for (i=0; i<3; i++) { show_str("c["); show_int(i); show_str("].a="); show_int( c[i].a ); show_nl(); show_str("c["); show_int(i); show_str("].b="); show_int( c[i].b ); show_nl(); } return 0; }