Skillcopy(to enable copy paste in skillrack)

Skillcopy is the extension available in google chrome to enable skillcopy in skillrack.

To enable it go to Google chrome

Click on this link

2 comments:

  1. int num1, num2;
    scanf("%d%d", &num1, &num2);
    if(num1 % 2 == 0 && num2 % 2 == 0)
    {
    printf("EVEN");
    }
    else if(num1 % 2 != 0 && num2 % 2 != 0)
    {
    printf("ODD");
    }
    else
    {
    printf("MIXED");

    ReplyDelete

Bonus Practice Problems(GMT To IST)

IST (Indian Standard Time) is 5 hours 30 minutes ahead of GMT(Greenwich Mean Time). Develop an algorithm and write the Python code to find...