1 2 3 4 5 6 7 8 9 10 |
#include<stdio.h> #include<unistd.h> #include<stdlib.h> int main(void) { printf("Get a real user ID:%\n", getuid()); printf("Get the effective user ID:%\n", geteuid()); printf("Get the real group ID:%\n", getgid()); printf("Get the effective group ID:%\n", getegid()); } |