Skip to content

Instantly share code, notes, and snippets.

@azk-mochi
Created July 20, 2018 10:12
Show Gist options
  • Save azk-mochi/ac3af2035cfbc63adca1e0daaea87135 to your computer and use it in GitHub Desktop.
Save azk-mochi/ac3af2035cfbc63adca1e0daaea87135 to your computer and use it in GitHub Desktop.
Check whether root or not
#include <iostream>
#include <unistd.h>
using namespace std;
int main(void){
if(getuid() == 0){
cout << "You are root." << endl;
}else
cout << "You are not root." << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment