15 lines
273 B
C
15 lines
273 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<sys/types.h>
|
|
#include<grp.h>
|
|
#include<string.h>
|
|
|
|
int main(int argc, char * argv[]) {
|
|
struct group * students21 = getgrnam("students21");
|
|
char ** names = students21->gr_mem;
|
|
|
|
printf("%c", names[1]);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|