Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <sys/types.h>
  3. #include <unistd.h>
  4. #include <sys/wait.h>
  5. #include <stdlib.h>
  6.  
  7. int main(){
  8.  
  9. printf("Reel\t: debbabi(IUD = %d), debbabi(GID = %d)\n", getuid(), getgid());
  10. printf("Effectif\t: debbabi(IUD = %d), debbabi(GID = %d)\n", geteuid(), getegid());
  11. return(0);
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement