#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 difference between XML Web Services using ASMX and .NET Remoting using SOAP?
what is the function of 'this' operator ?
WHAT IS ABSTRUCT DATA TYPE ? PLEASE EXPLAIN IT.
What is polymorphism? Explain with an example.
what is the difference between inter class and abstract class...?
What are the 3 principles of oop?
why constructor cannt be declar virtually? why destructor cannt be overloaded?
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined
What is polymorphism explain?
How compiler selects(internally) required overridden function in inheritance?
2 Answers CSC, Infinite Computer Solutions,
Differences between inline functions and non-inline functions?
What is multiple inheritance?