Nov 27 2008 04:00 AM 2394 4 Scope resolution Usha anbu What is scope resolution in C++ and object oriented ? rkv275 Profile Answers by rkv275 Questions by rkv275 May 27th, 2009 :: scope resoulation operator is used in two ways1: access global variable 2: access member of a class Gothic Profile Answers by Gothic Questions by Gothic Feb 25th, 2009 #include using namespace std; int amount = 123; // A global variable int main() { int amount = 456; // A local variable cout Answer Question Select Best Answer
Nov 27 2008 04:00 AM 2394 4 Scope resolution Usha anbu What is scope resolution in C++ and object oriented ? rkv275 Profile Answers by rkv275 Questions by rkv275 May 27th, 2009 :: scope resoulation operator is used in two ways1: access global variable 2: access member of a class Gothic Profile Answers by Gothic Questions by Gothic Feb 25th, 2009 #include using namespace std; int amount = 123; // A global variable int main() { int amount = 456; // A local variable cout Answer Question Select Best Answer
rkv275 Profile Answers by rkv275 Questions by rkv275 May 27th, 2009 :: scope resoulation operator is used in two ways1: access global variable 2: access member of a class
Gothic Profile Answers by Gothic Questions by Gothic Feb 25th, 2009 #include using namespace std; int amount = 123; // A global variable int main() { int amount = 456; // A local variable cout