kindly please help me with my problem
#include <stdio.h>
#include <string.h>
int samplepre ()
{
do {
char username[3]; // users's input username
char password[3]; //user's input password
char choice; // Main menu choice
char x; // option try again
char string;
int i; // for for loop : index
printf ("\t************\n");
printf ("\t*Login Menu*\n");
printf ("\t************\n");
printf ("Enter your username:"); // The user is ask to input its username
scanf ("%s",username);
printf ("Enter password:"); // The user is ask to input its password
scanf ("%s",password);
if (strcmp(username,"admin") == 0 && strcmp(password,"vdedote") == 0)
{ // if the condition is true the set of codes will execute
system ("cls");
printf ("****************\n");
printf ("*WELCOME ADMIN!*\n");
printf ("****************\n");
system ("PAUSE");
//printf ("\n");
printf ("What may I be of service sir?\n");
printf ("************\n");
printf ("*MAIN MENU:*\n");
printf ("************\n");
//printf ("\n");
printf ("[A] Remove Vowels\n"); // The user will be asked of his own choice
printf ("[B] Remove Entered Character\n");
printf ("[C] Arithmetic\n");
printf ("Select your choice:");
scanf ("%s",choice);
}
else
{ // if the user inputs wrong data
// x = option try again
printf ("****************\n");
printf ("*ACCESS DENIED!*\n");
printf ("****************\n");
printf ("Would you like to try again <Y/N>");
scanf ("%s",x);
}
while (strcmp(username,"admin") == 1 && strcmp(password,"vdedote") == 1);
}