Friday, July 29, 2011

Do i mind?

1.no respect u can get from public
2.money determines the winner
3.finding cheats is common finding honest is very  less
4.have to play many drama and lie even to your loved ones
5.everyone is watching our move to pin point our mistakes,but none interested to implement it.
6.corruption in the country
7.no lover
8.no aim
9.finally i know that i will take nothing even if it is a earned very hard by me!

************************************************
still i'm living in this unfair conditions.:(

Wednesday, July 13, 2011

Thursday, June 23, 2011

Wasted #

wastig my life time without
1.Money
2.Friends
3.Family
4.Bike
5.Love

Friday, June 10, 2011

Static Keyword in c#

Notes:-
1.Cannot use "this".
2.If any instance is created ,we can't access the static methods,fields,members,..
3.Constants are implicitly static


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace conStatic
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("// For Static ");
            Console.WriteLine(Cal.mul(23, 43).ToString());

            Console.WriteLine("// ordinary method");
            Cal obj = new Cal();
            Console.WriteLine(obj.adder(65, 23).ToString());

            Console.ReadLine();
        }
    }

    public class Cal
    {
        public static int x;
        public static int y;

        public int adder(int x, int y)      //we cannot use "this" operator
        {
            return x + y;
        }

        public static int mul(int x, int y)
        {
            return x * y;
        }
    }
}



// In case any points need to be added Post it in Comments
//Karthik

Wednesday, June 1, 2011

"foreach" statement in c#

"ForEach" Statement helps the loop to run without any declaration for length
It also Reduces the the code by not declaring any variable which can check for Length


Eg:


string [] Emp_names = {"raj","Kumar","Joe","Mark","christie"};


 foreach ( string names in Emp_names)
  {
      console.writeline(names);
  }

Thursday, May 26, 2011

Skype not working may 26

Most of them are having problem with the "skype is not working" 
This problem started May 26 2011


Solution:
1.Close all your applications
2.Restart the computer
3.Right Click the icon in the task bar
4.click "quit"
5.goto "Run"
6.Type "control folders"
7.In view tab "click the radio button show hidden folders"
8.Again goto "Run"
9.type "%appdata%\skype"
10.delete "shared.xml" file


Problem solved
Try to open the skype from the start menu it should work!!


Wednesday, May 25, 2011

Just In Time!


Kaathalai Kaapatra
Kaatrodu Inainthu
Nadanam Aadum Thee Kooda Penn Than
Anainthu Vidu Kaatru illayanil !

True Love still exist

Tuesday, May 24, 2011

Today

may 25  2011 very dull and sleepy .
No other options so have to work

Friday, May 20, 2011

Growth

growth is defined by healthy and wealthy society!!
So ask god a healthy mind:)

Tuesday, May 17, 2011

No Matter!


No matter how long you know them 
No matter how deep you love them 
No matter how you respect them
No matter how you are loved by them 
They are no matter in front of Mothers Love!
                                         -->Karthik

Wednesday, May 4, 2011

Unable to save the animal



I was waiting for the bus today morning , the little animal was really struggling to climb the platform it searched  for the shortest height ,moving here and there .All the crowd was seeing it some of them want to help the little one Including Me , I stepped down the platform to help the little squirrel but it went to the extreme corner of the bus stop .I know that i am late to office so left the place without helping the tiny ,today really a bad day for me !

Tuesday, March 29, 2011

I Am Basically a "Tree Lover"

I Love Trees Because They Don't Hate Me!

Here is the link to For ISA Click Here

Here is-most-magnificent-trees-in-the-world Click Here


--------------------------------------------------------------------------------------------------

 Here is-most-magnificent-trees-in-the-world Click Here

-------------------------------------------------------------------------------------------------



Friday, March 11, 2011

Kavithai

neenda naal kathirunthane
Thai anbirkaga

neenda naal kathirunthane
Thanthai Pasathukaka

neenda naal kathirunthane
Theriya villai
Kadavul Yar Endru

Neram Mudinthathu
Sorgam Sendrane
Bathil Kidaiththu
En Manaiviyai Parthathum

---->I Love My Wife...

Thursday, February 10, 2011

Source code to insert string into another string


main ( )
{
char string[100], insert[100], newstring[200] = {' '};
char *stringpointer = string,  *insertpointer = insert,  *newstringpointer = newstring;
int position,  charcount = 0 ;

cout << "enter first string:"<< endl;
gets(string);
cout << "enter second string "<< endl;
gets(insert);
cout << "Enter Poition to Inserrt:";
cin >> position;

while(*stringpointer != '\0')
{
if(charcount == position)
{
while (*insertpointer != '\0')
{
*newstringpointer++ = *insertpointer++;
++charcount;
}
}
*newstringpointer++ = *stringpointer++ ;
++charcount;
}
cout << "result"<<endl;
cout << newstring  ;
}