Which of the following statement is correct about the program given below? #include class CuriousTab { static int x; public: static void SetData(int xx) { x = xx; } static void Display() { cout<< x ; } }; int CuriousTab::x = 0; int main() { CuriousTab::SetData(44); CuriousTab::Display(); return 0; }
Correct Answer: The program will print the output 44.