Latest Answer : Hi, This is a typical example of reflection. If you are using .NET then use reflection for this purpose. In this case you create an object of a particular type and the invoke methods at run time by passing function name. ...
Latest Answer : This statement should be fopen("c:\\newdirfile.dat","r"); ...
Latest Answer : The largest possible memory block malloc can allocate depends on the host system, particularly the size of physical memory and the operating system implementation. Theoretically, the largest number should be the maximum value that can be held in a size_t ...
Latest Answer : All virtual functions have late binding. All non-virtual functions will have early binding.Early binding happens at compile time. Compiler, looking at the reference or pointer type decides the method to be called.Late binding happens at runtime looking ...
Can we call constructor of superclass directly without using super()method in subclass? if yes,explain,if no,why?