What will be the output of the following program?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?

#include 
class Crackexams {
int x, y;
public:
void show(void);
void main(void);
};
void Crackexams::show(void) {
Crackexams b;
b.x = 2;
b.y = 4;
cout<< x << " " << y;
}
void Crackexams::main(void) {
Crackexams b;
b.x = 6;
b.y = 8;
b.show();
}
int main(int argc, char *argv[]) {
Crackexams run;
run.main();
return 0;
}

A. 44653
B. 44779
C. The program will report error on Compilation.
D. The program will report error on Linking.