please dont rip this site

Language Ccpp Cref Examples User_name.c

  
/************************************************************************
 *
 * Purpose: Get the users real name with the 'getpwuid' function.
 * Notes:   This is a UNIX only program. It will not work on DOS machines
 *          as 'getpwuid' gets its information from /etc/passwd.
 * Author:  M J Leslie
 * Date:    13-Jan-95
 *
 ************************************************************************/

#include <pwd.h>			/* getpwuid			*/
#include <sys/types.h>

/************************************************************************/

void user_name(void);

/************************************************************************/

main()
{
  user_name();
}

/************************************************************************/

void user_name(void)
{
					/* See the getpwuid man page 
					 * for a description of the
					 * structure.			*/
  struct passwd *passwd;
					/* Get the uid of the running
					 * process and use it to get
					 * a record from /etc/passwd
					 */ 
  passwd=getpwuid(getuid());

  printf("Users Real name is %s\n", passwd->pw_gecos);
}


file: /Techref/language/ccpp/cref/EXAMPLES/user_name.c, 1KB, , updated: 1997/4/21 09:52, local time: 2024/4/27 21:31,
TOP NEW HELP FIND: 
52.14.240.178:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.massmind.org/techref/language/ccpp/cref/EXAMPLES/user_name.c"> language ccpp cref EXAMPLES user_name</A>

Did you find what you needed? From: "/language/ccpp/cref/EXAMPLES/user_name.c"

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .