Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of ivomalinowskip

ivomalinowskip

ivomalinowskip has asked 0 questions and find answers to 1 problems.

Stats

11
EtPoint
1
Vote count
0
questions
1
answers

About

Avid teenager looking for a future. Programming is fun. Hacking is fun * 10^27 .

include

include

int main(void) { char buff[15]; int pass = 0;

printf("\n Enter the password : \n");
gets(buff);

if(strcmp(buff, "ILoveCode"))
{
    printf ("\n Correct Password \n");
    pass = 1;
}
else
{
    printf ("\n Wrong Password \n");
}

if(pass)
{
   /* Now Give root or admin rights to user*/
    printf ("\n Root privileges given to the user \n");
}

return 0;

}

ivomalinowskip questions