b2_1_3.cxx

We use cookies. Read the Privacy and Cookie Policy

b2_1_3.cxx

#include ‹stream.hxx›

int a = 1;

void f()

{

 int b = 1;

 static int c = 1;

 cout ‹‹ " a = " ‹‹ a++

  ‹‹ " b = " ‹‹ b++

  ‹‹ " c = " ‹‹ c++ ‹‹ " ";

}

main ()

{

 while (a ‹ 4) f();

}