Can we define function inside main in c++?
How many lines of code you have written for a single program?
What is data hiding c++?
Explain shallow copy?
write the programme that convert a interger to biniry number
How would you obtain segment and offset addresses from a far address of a memory location?
What is guard code in c++?
What and all can a compiler provides by default?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Is c++ built on c?
Why is it difficult to store linked list in an array?
Can you be bale to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected