43. Using Namespace Directive

Back To All Submissions
Previous Submission
Next Submission
#include <iostream>
using namespace std;

namespace Config {
    int baudRate = 9600;
    int threshold = 50;
}

int main() {
    using namespace Config; // your code here: add using namespace statement
    std::cout << "Baud: " << baudRate << ", Threshold: "<< threshold << std::endl;
    // your code here: print baudRate and threshold
    return 0;
}
Was this helpful?
Upvote
Downvote