9 lines
167 B
C
9 lines
167 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <grp.h>
|
|
|
|
int main() {
|
|
struct group student = getgrnam(etc/group/students22);
|
|
printf("%s",student.gr_mem);
|
|
return 0;
|
|
} |