Hmmm, there are many more cases.... Try out if you can create a folder named "prn".... You can not create case sensitive folders too. i.e. if...
Shabbir, Least Common Multiple(L.C.M.) of 'a' and 'b' is the smallest number 'n' which is both perfectly divisible by 'a' as well as...
Hmmm, even the size of pointers can change. If you have double and char* still it will be (8 + 8 =)16.
/******************************/ class A { private: int a; char b; }; class B { private: char b; }; int main() { A a;...
A good question usually asked at interviews,- /**************************/ int * func(int, int); void main() { int *ptr = func(2,3);...
I'll add one thing that,- just declare the class as:- class A { int a,b; A *obj; }; Your problem will be solved. Otherwise, it becomes a...
One thing I'll add,- There will be memory allocation from stack-memory. The heap memory has nothing to do here.
Separate names with a comma.