// chapter8.cpp : Defines the entry point for the console application. // #include "stdafx.h" int main(int argc, char* argv[]) { int f(int); f(1); return 0; } int f(int a) { int b, c=3; return 0; }