bot

bot


#include<stdio.h>

#include<string.h>

int main()

{

char buf[15];

int flag=0;

printf("Enter the password : ");

gets(buf);

if(strcmp(buf,"pkdaa"))

{

printf("*****The Entered Password is Wrong*****\n");

}

else

{

printf("*****Password is correct*****\n");

flag=1;

}

if(flag)

{

printf("*****ROOT USAGE GRANTED*****\n");

}

return 0;

}

Report Page