Al's take on tech
Saturday, January 12, 2008
Design and Implementation Idea of POLYMORPHISM in C [ non - object oriented language] Part IV
›
DISCUSSION – 1.A function pointer restricts (via the function prototype) the type of parameters passed to the function it is pointing to. On...
1 comment:
Design and Implementation Idea of POLYMORPHISM in C [ non - object oriented language] Part III
›
Implementation #include #include #include #define MAX_SIZE_STACK 100 // here for a basic type only two methods are considered i.e. get() and...
Friday, January 11, 2008
Design and Implementation Idea of POLYMORPHISM in C [ non - object oriented language] Part II
›
Design Document - Here we are required to create a stack which can have element of different types. Important notes - In order to apply Ob...
Design and Implementation Idea of POLYMORPHISM in C [ non - object oriented language] Part I
›
Here we were required to design a polymorphic container (say, a stack) using the features provided by a procedural/modular programming lang...
Tuesday, December 4, 2007
Lehman Brothers FTA Technical and HR interview Experience
›
Technical (for about 50 min) It started with some puzzles , Given 7 gold bars connected with ropes, you have to give a labour his payment f...
Sunday, December 2, 2007
How to display a percentage-done indication on the screen?
›
The character '\r' is a carriage return without the usual line feed, this helps to overwrite the current line. The character '\b...
Sudoku verifier using bit fields
›
char VerifySudoku( char grid[81]) { unsigned int bitFlags = 0; unsigned short buffer; // to speed up things char r, ...
›
Home
View web version