New Text Document

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<iostream.

h> void a(void) {int x=25; cout<<"local x in a is"<<x<<"after entering a"<<endl; ++x; cout<<"local x in a is"<<x<<"before exiting a"<<endl; } int x=1; void main() { int x=5; cout<<"local x in outer scope of main is"<<x<<endl; { int x=7; cout<<"local x in inner scope of main is"<<x<<endl; } cout<<"local x in outer scope of main is"<<x<<endl; a(); cout<<"local x in main is"<<x<<endl; }

#include<iostream.h> const int size=1000; void factors(int m,inta[],int&n) { n=0; for(int i=1;i<=m/2;i++) if(m%i==0) {a[n]=i; n++;} }

You might also like