

On the white summit of eternity
A single Soul of bare infinities,
Guarded he keeps by a fire-screen of peace
His mystic loneliness of nude ecstasy.
But, touched by an immense delight to be,
He looks across unending depths and sees
Musing amid the inconscient silences
The Mighty Mother’s dumb felicity.
Half now awake she rises to his glance;
Then, moved to circling by her heart-beats’ will,
The rhythmic worlds describe that passion-dance.
Life springs in her and Mind is born; her face
She lifts to Him who is Herself, until
The Spirit leaps into the Spirit’s embrace.
When memory is allocated using malloc() in any function ,it returns a pointer to the start of the data………and again we free the memory using free() wit the help of pointer.but it should be used b4 we leave the function.n if it’s not used the pointer is lost and there is no way to clr the memory and it can never be used.
tis is called MEMORY LEAK………
For example:
#include<stdio.h>
#include<string.h>
int main()
{
char *ptr;
ptr = NULL;
ptr = strdup(“HI”);
printf(“\n%s”,ptr);
// free(ptr);
// ptr = NULL;
return 0;
}
It will show memory leak of 3 bytes.
now Uncomment the commented lines, no memory leak will be there.
Yeah.That is MyBook. A kutty software created for storing the details of our friends.It was boring for me for the past two days.So i have created this in VB.Net using visualStudio2005 IDE. This has the connectivity with MS Access database. I have also stored image in the database.But for storing images i have referenced some other codings.
For this software we must have some system reqirements: