APL/APL1.2/TP02/groupe.c

15 lines
273 B
C
Raw Normal View History

2021-11-30 13:54:37 +01:00
#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;
}