4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
How can I implement sets or arrays of bits?
Explain is it better to bitshift a value than to multiply by 2?
How do you search data in a data file using random access method?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain how can type-insensitive macros be created?
What is the advantage of a random access file?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Under what circumstances does a name clash occur?
what is the structure?
What is #line?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]