#include <iostream>
using namespace std;
struct wow {
int x;
};
int main() {
wow a;
a.x = 22;
int c = a.x;
int *b = new int;
cout << c;
return 0;
}
option:
No output
0
22
-(11)
Will not compile
What is the highest level of cohesion?
Can a varargs method be overloaded?
Is this job good for future? can do this job post grduate student?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What does and I oop mean?
write a short note on Overloading of Binary Operator?
how to create thread in java?
17 Answers IBM, Infosys, Wipro,
what is the 3 types of system development life cycle
to find out the minimum of two integer number of two different classes using friend function
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
write string class as your own class in java without using any built-in function
ambiguity regulation of multiple inheritance with example.