Developpement/23DEV1.1/TPS1/TP2/19-Structures/Numeros.c

16 lines
225 B
C
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <pwd.h>
struct id_s {
int UID;
char name;
};
typedef struct id_s id;
int main(int argc, char const* argv[]){
int x = getpwuid();
char y = getpwnam();
id r = {, };
}