Thursday, April 10, 2008

Reliance HR to recruit 5 lakh staff in 4 years!!

Reliance HR Services (RHRS), a human resources company formed by the Reliance Anil Dhirubhai Ambani Group (ADAG), will recruit half a million people for the group in the next four years.

These recruits will be deputed to Reliance Communications , Reliance Webstores, Reliance Capital , Reliance Consumer Finance, Reliance Money, Reliance Life Insurance and Reliance Energy .

About 90 per cent of these employees will be on sales functions, while the rest will be on the back-end and customer service functions.

Amitava Ghosh, CEO, RHRS, said, "Currently, about 20,000 employees are on RHRS payroll, serving various ADAG companies."

RHRS has also formulated a plan for the five forthcoming financial years to become a global HR outsourcing and consultancy organisation.

"By 2013, RHRS will evolve into an end-to-end HR outsourcing provider and an HR consultant," Ghosh said. By 2009, RHRS plans to offer HR outsourcing services.

"We can offer HR outsourcing services to companies that operate in sectors such as retail, IT BPO, among others," Ghosh said.

RHRS also plans to offer consultancy services, including compensation surveys and feedback reports.

To recruit a sizeable number of people, RHRS is planning a series of job fairs in the country. Guwahati has been selected as a pilot location.

The company will recruit freshers, who will be paid Rs 7,000 to Rs 12,000 a month, depending on the cost of living of the city.

Usage of localtime()

struct tm * localtime ( const time_t * timer );

Convert time_t to tm as local time

Uses the time pointed by timer to fill a tm structure with the values that represent the corresponding local time.

Parameters

timer
Pointer to a time_t value representing a calendar time (see time_t).

Return Value

A pointer to a tm structure with the time information filled in.

This structure is statically allocated and shared by the functions gmtime and localtime. Each time either one of these functions is called the contents of this structure is overwritten.

Example

/* localtime example */
#include
#include

int main ()
{
time_t rawtime;
struct tm * timeinfo;

time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ( "Current local time and date: %s", asctime (timeinfo) );

return 0;
}

Output:

Current local time and date: Sat May 20 17:36:17 २०००


But be cautious while using the localtime() and gmtime() Usage because these functions will share common structure to give output
if these functions are used in Parallel result may unpredicted..