Scoping rules
 
 
- File Scope: int k;1: {    	 … 		2:{ …..				} }3: {    	……      } Any identifier declared outside of all blocks has file scope: it can be accessed anywhere within the file in which it was declared.(Note that #include statements treat the identifiers declared in the header file as if they were declared in the including file).