mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-04 11:21:42 +00:00
10 lines
167 B
C
10 lines
167 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
printf("uid %d\ngid %d\n", getuid(), getgid());
|
|
system("/usr/bin/id");
|
|
return 0;
|
|
} |