One string is a normal string and another string is a shuffled one. Find out whether the given strings are equal or not after shuffling. - Link
Given an integer num (1<n<100). Find a minimal divisor that is not equal to the given number and the sum is equal to the given number. Input: 9
Output: 18
Q:What is the data type of pointer variables? Suppose that we don‘t know the name of a variable but we do know its address. Can we access the contents of that variable? Explain briefly.
Create a method cled checkUniform() tgat returns true or false and checks if the filled bottles in the watersort game are identical or not
Q: What is the data type of pointer variables? Suppose that we don‘t know the name of a variable but we do know its address. Can we access the contents of that variable? Explain briefly.
Write a function solution that given a three digit integer N and Integer K, returns the maximum possible three digit value that can be obtained by performing at most K increases by 1 of any digit in N
Q: What is the data type of pointer variables? Suppose that we don‘t know the name of a variable but we do know its address. Can we access the contents of that variable? Explain briefly.
Write a C code of O(n) order to remove all the odd numbers from the array. Example: the
array contains 10, 2, 3, 7, 8, 6, 11. The output should be 10, 2, 8, and 6