Thursday, October 6, 2011
Steve Jobs is no more.
Sunday, October 2, 2011
AKON Sings For Mahesh Babu's 'Businessman'
Now, it is heard that the chances of AKON singing in Tollywood are high. Sources say talks are on with Akon and if all goes well, he would be crooning for the film ‘The Businessman’ Telugu version starring Mahesh Babu. The film is directed by Puri Jagannadh and it is heard that his team has started a dialogue with Akon.
If the talks become successful then this would be the first Telugu song for Akon and in a way, it could also be the first Telugu song ever sung by an internationally famous rapper. The filmnagar folks are hoping that the talks go successfully as they want to see what Akon can offer.
Imp.... Job Registration Web Sites For Campus Placements.............
JOB REGISTRATION WEBSITES FOR PLACEMENT
www.jobstell.com
www.fresherzine.com
http://placementpapers.net/jobs
www.freejobalert.com
www.hrnexus.com
www.placementmantra.com
www.jobtrials.com
www.fresherspage.com
www.trovitjobs.com
www.freshersyaar.com
www.walk-in-interview.com
www.firstsalary.com
www.fresherspage.com
www.freshersrozgar.com
www.jobsflicker.com
www.freshersinfo.com
www.freshersplanet.com
www.freshersworld.com
www.thejobsworld.com
www.jobsint.com
www.way2freshers.com
www.rangrut.com
www.ieg.gov.in
www.careerenclave.com
http:/jwjobs.net
fresherhome.com
www.bayt.com
jobport123.com
fresherscloud.com
hamarajobz.com
jobgroupz.com
latestwalkin.com
afterbtech.com
Friday, September 30, 2011
Congress meet on Telangana ends, no decision yet!
Congress sources said the core group discussed the report which has been prepared by Azad after talking to party leaders from various parts of Andhra Pradesh. Azad, the Congress in-charge of Andhra Pradesh, is the Union health minister. The core group meeting was held at 7 Race Course Road official residence of Prime Minister Manmohan Singh.
Congress MP from Nizamabad Madhu Goud Yaskhi said Azad had given his report on the demand for Telangana to Congress presidentSonia Gandhi. He said other parties such as Telugu Desam Party and All India Majlis-E-Ittehadul Muslimeen seemed to be waiting for the stand of the Congress.
Yaskhi, along with several other leaders from the Telangana region had met finance ministerPranab Mukherjee on Thursday to press for their demand for creating a new state. Another party leader, K Keshava Rao, said that party leaders were keen to stay in the capital till a decision is taken on the demand for creation of new state.
Meanwhile, Telangana Rashtra Samithi chief K Chandrasekhara Rao and other leaders of the Telangana movement on Friday evening reached New Delhi to meet the PM and urge him to take an early decision on formation of a separate state.
The Congress core committee meeting comes amid intensification of the agitation in Telangana for the creation of new state. Normal life in the region has been badly affected as the ongoing agitation has entered the 18th day.
Friday, September 16, 2011
Argentina vs Romania Rugby World Cup Live Streaming!
Watch BMW Championship PGA Tour Golf Live Streaming!
France vs Russia EuroBasket 2011 Lithuania LLive Streaming!
Monday, September 12, 2011
Oakland Raiders vs Denver Broncos NFL-2011 Week-1 LIve Streaming!
New England Patriots vs Miami Dolphins NFL-2011 Week-1 Live!
US Open Final - Djokovic vs Nadal Grand Slams Live!
Watch Italy vs France volleyball Live Streaming!
Watch Greece vs Georgia basketball Live Streaming!
Saturday, September 10, 2011
Ergotelis Creta vs PAOK Salonica soccer Live!
Watch Werder Bremen vs Hamburger Live Streaming!
Friday, September 9, 2011
Dhookudu songs
Movie Name : Dookudu
Year : 2011
Cast : Mahesh Babu, Samantha...
Music Director : Thaman S
Producer : Achanta Ram, Achanta Gopinath, Anil Sunkara
Director : Srinu Vytla
Label : Aditya Music
Lyrics : Vishwa, Ramjogayya Sastry, Bhaskarabhatla
Download in a Single File : Dookudu 320 Kbps Mp3 Songs in Single File
Thursday, April 28, 2011
Monday, January 3, 2011
Function in C Language?
A function in C language is a block of code that performs a specific task. It has a name and it is reusable i.e. it can be executed from as many different parts in a C Program as required. It also optionally returns a value to the calling program
So function in a C program has some properties discussed below.
Every function has a unique name. This name is used to call function from “main()” function. A function can be called from within another function.
A function is independent and it can perform its task without intervention from or interfering with other parts of the program.
A function performs a specific task. A task is a distinct job that your program must perform as a part of its overall operation, such as adding two or more integer, sorting an array into numerical order, or calculating a cube root etc.
A function returns a value to the calling program. This is optional and depends upon the task your function is going to accomplish. Suppose you want to just show few lines through function then it is not necessary to return a value. But if you are calculating area of rectangle and wanted to use result somewhere in program then you have to send back (return) value to the calling function.
C language is collection of various inbuilt functions. If you have written a program in C then it is evident that you have used C’s inbuilt functions. Printf, scanf, clrscr etc. all are C’s inbuilt functions. You cannot imagine a C program without function.
Structure of a Function
A general form of a C function looks like this:
{
Statement1;
Statement2;
Statement3;
}
int sum (int x, int y)
{
int result;
result = x + y;
return (result);
}
Advantages of using functions:
There are many advantages in using functions in a program they are:
- It makes possible top down modular programming. In this style of programming, the high level logic of the overall problem is solved first while the details of each lower level functions is addressed later.
- The length of the source program can be reduced by using functions at appropriate places.
- It becomes uncomplicated to locate and separate a faulty function for further study.
- A function may be used later by many other programs this means that a c programmer can use function written by others, instead of starting over from scratch.
- A function can be used to keep away from rewriting the same block of codes which we are going use two or more locations in a program. This is especially useful if the code involved is long or complicated.
Types of functions:
A function may belong to any one of the following categories:
- Functions with no arguments and no return values.
- Functions with arguments and no return values.
- Functions with arguments and return values.
- Functions that return multiple values.
- Functions with no arguments and return values.
These function types will be dicussed in my next posting. So please keep visitingmy hubpage.
Example of a simple function to add two integers.
- #include
- #include
- void add(int x,int y)
- {
- int result;
- result = x+y;
- printf("Sum of %d and %d is %d.\n\n",x,y,result);
- }
- void main()
- {
- clrscr();
- add(10,15);
- add(55,64);
- add(168,325);
- getch();
- }