DEV/DEV1.1/TP12:Structures/groupe.c

9 lines
167 B
C
Raw Normal View History

2022-11-16 15:31:49 +01:00
#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;
}