the scope resolution Operator.


SUBMITTED BY: Nrupeshsinh

DATE: June 22, 2016, 11:58 a.m.

FORMAT: Text only

SIZE: 186 Bytes

HITS: 634

  1. # include<iostream.h>
  2. # include<conio.h>
  3. int count=100;
  4. void main()
  5. {
  6. clrscr();
  7. int count=10;
  8. cout<<"Count 1="<<count<<endl;
  9. cout<<"Global count 1="<<::count;
  10. getch();
  11. }

comments powered by Disqus