cursor

pictures

Wednesday, 29 July 2015

Our APJ Abdul KALAM Sir..

Today is the day, in which our former president of India and the only president of Indians ,the great man Dr. A. P. J. Abdul KALAM sir eternal journey. His words are powerful but he expressed it with utter simplicity. As a child, I used to think that all the higher officials,save for the freedom fighter's simplicity, are in full power and they will impose us with their money and celebrity things.

I have never seen my grandfathers in both sides, but in 2002 , Abdul KALAM sir became a president with the acceptance from both the competitive political parties. I was amazed, when his works penetrated everyone. I started to love him as my grandfather, the teacher and the best person with whom I can take his life footage as my role model.

I strictly hate to follow someone's life and KALAM sir insisted to not to follow others but to learn from everyone we encounter in our life, without knowing the students' heart and people's mind started to follow him adamantly.

And he lived here, in our India, to prove that any man can fight the major enemies like wealth, over desire,jealous and self pity.. But he also taught us the allies like WEALTH OF KNOWLEDGE, OVER DESIRE TO ACQUIRE TALENTS, JEALOUS AGAINST BOOKS and self pity when u can't even read a good book in your life.

His speeches helped me to read out of school books. One hour of reading will make you to acquire the knowledge to handle many things in your life. Daily reading makes you the treasure of knowledge. True sir.. I am blessed to hear your words, advices ,teachings and to live in the world, you lived.. you are living and you will outlive.

Those persons who don't do anything memorable ,while the man living ,doesn't have any rights to do lot of things after he die.

Sir, We wanted to tribute you by doing something, but you know ,sir, when we hear  the news that your soul left your body.. Our eyes shed the tears we dint have any control over. We were shattered and stumbled by the news, sir. You are the legend who will live in our hearts and u seeded the dreams in our mind. Even though you fly over the wings of fire, your dreams is in our mind & vision in our eyes and your soul blended with us.
Your soul left your body but you have thousands and thousands of lives by living in our hearts. We want you to guide us from the heaven, in our path to reach the vision 2020. You are being simple and I simply hate the advertisements to make you an extravagant after you die. We miss you sir, as a teacher,as a father,as a grandpa in your human form. But now you are going to blend as a mass and energy which will be living around us after your eternal ceremony.

 You are the man.! We salute you, Sir.

Wednesday, 14 August 2013

Happy Independence day Friends...!

Advance happy Independence day to all...
"I AM PROUD TO BE AN INDIAN"
Thanks to the millions and millions of freedom fighters for this Independent India..

They sacrificed their lives ,forfeited their happy family in order to engage themselves in freedom struggle for us..for our free India..

For my eyes,Each and everyone are
(1)Jesus Christ in facing struggle,
(2)All mighty Allah for the good thoughts & benevolent,
(3)All thirty three thousand crore Hindu Gods in saving us from the giant "Slavery"..

Dedicating Those Gods & am extending my wishes to all my fellow Indian Citizens.. please treat all Indians as brothers and sisters..They are Our Mother India's children only ..

HAPPY INDEPENDENCE DAY,INDIANS.. M BROTHERS AND SISTERS..

P.S :-
Thanks to the British,Dutch,Portuguese,French foreigners to made us feel our "brotherhood & Unity in Diversity"..


My creations...!!!


My drawings of Thirukandiyur Sculptures 


(1)
Lord Brahma
Gowri.Mani's painting 

(2)
Thirukandiyur sculpture of
Lord Ganesh
 
Gowri.Mani's painting

Gowri.Mani's painting 

                                                                        (3).
                                                               Thirukandiyur sculpture of Arthanaareeswarar..

Gowri.Mani's painting 
 (4).Baby Hanuman (painted version)
Gowri.Mani's painting
                                                                 (4).Baby Hanuman(pencil art)

Gowri.Mani's painting
(5).My mental picture of Lord shiva's portrait

Gowri.Mani's painting


Blog's Birthday.. :) :D



I am feeling Euphoric & ecstatic,Today is the first anniversary of our blog :D..
Thanks to all my family members,The lord & friends especially Google + friends...
No words to explain my feelings for this .. :)
by,






Wednesday, 5 September 2012

program to check whether the given number is prime or not

hello keerthi...u asked me right..?
here is the solution for ur doubt in "to check whether the given number is prime or not...?"....in c++

note: 
        (1). the words with red color letters are comments to understand the concept..need not include it in program...ok..?
        (2). prime number is the number which is divisible by 1 and by itself...like 1,2,3,5,7,11,13,17,19,23..etc...so have this logic in ur mind and write the program..definetly u finds it easy...here is the program.,hope it is helpful..


PROGRAM CODING:
#include<iostream.h>
#include<conio.h>
int main()
{
    int flag;
    int n,i;
    cout<<"Enter the number:"; /*you are getting number from the user here*/
    cin>>n;
    if(n<=3)/*if it is 0,1,2,3--it will be obviously prime number.,so we are declaring this as prime*/
    cout<<"The number is a prime number";
    else
    for(int i=2;i<n/2;i++)/*these steps are checkin whthr the given no. is divisible by othr no.s or not.,(continue)*/
    {if(n%i==0)
    {
    flag=0;/*if yes.,it will print "it is not a prime"*/
    break;
    }
    else
    flag =1;/*if not.,it will print"it is a prime"*/
    }if(flag==1)
    cout<<"The given number is a prime number";
    else
    cout<<"The given number is not a prime number";
    getch();
}

Sunday, 2 September 2012

FOR FIRST YEAR STUDENTS

Hi my dear juniors---First year students...!
if u have any problem in programming in FOC ...!
or understanding any concepts in first year anna univ (chennai)syllabus...!

step 1==>see ""contacts"" in the ''pages'' bar on the right side or click here (contact me)


step 2==>fill ur details in it..("IT WILL BE HIDDEN")..so u r completely
safe

step 3==>fill ur status & den ask ur questions and doubts in the comment bar...

for further queries.,mail me to gowrimani28@gmail.com..I'll help u for sure..! :)

feel free to ask ur doubts in studies..

Friday, 17 August 2012

QUEUE IMPLEMENTATION using LINKED LIST

Here i attached the program codings of Queue Implementation using linked list....!

Hopeit will be helpful..! :)


#include<stdio.h>
#include<conio.h>
#include<malloc.h>
struct node
{
    int data;
    struct node *next;
} *front, *rear;
void enqueue(int ele);
int dequeue();
void display();
int main()
{
    int ch, ele;
    rear = NULL;
    front = NULL;
    while (1)
    {   printf("\n***QUEUE IMPLEMENTATION USING LINKED LIST*** \n");
        printf("************ Menu ***************");
        printf("\nEnter:\n1 . Enqueue (INSERTION)\n2 . Dequeue (DELETION)\n3 . Display\n4 . Exit\n");
        printf("Enter your choice :: ");
        scanf("%d", &ch);
        switch (ch)
        {
            case 1:
            printf("Enter The Element Value\n");
            scanf("%d", &ele);
            enqueue(ele);
            break;
            case 2:
            ele = dequeue();
            printf("The deleted element = %d\n", ele);
            break;
            case 3:
            display();
            break;
            case 4 :
            exit(0);
            break;
            default:
            printf("Invalid choice..!");
            getch();
            break;
        }
    }
}
void enqueue(int ele)
{
    struct node *p;
    p = (struct node*)malloc(sizeof(struct node));
    p->data = ele;
    p->next = NULL;
    if (rear == NULL || front == NULL)
    front = p;
    else
    rear->next = p;
    rear = p;
    display();
}
int dequeue()
{
    struct node *p;
    int ele;
    if (front == NULL || rear == NULL)
    {
        printf("\nUnder Flow");
        getch();
        exit(0);
    }
    else
    {
        p = front;
        ele = p->data;
        front = front->next;
        free(p);
    }
    return (ele);
    display();
}
void display()
{
    struct node *t;
    t = front;
    while (front == NULL || rear == NULL)
    {
        printf("\nQueue is empty");
        getch();
        exit(0);
    }
    while (t != NULL)
    {
        printf("->%d", t->data);
        t = t->next;
    }
}