Computer Literacy for all . Get all type of study computer materials.
#include <iostream> using namespace std; char c = 'a'; // global variable int main() { char c = 'b'; //local variable cout << "Local c: " << c << "\n"; cout << "Global c: " << ::c << "\n"; //using scope resolution operator return 0; }
No comments:
Post a Comment