#include stdio.hint main() {char str[5]="Sookshmas";printf("%s\n",str);return 0;}
#include iostreamWhat will be the o/p:using namespace std;class Test{static int x;public:Test() { x++; }static int getX() {return x;}};int Test::x = 0;int main(){cout Test::getX() " ";Test t[5];cout Test::getX();}