Answer:
key differences between linux and windows operating system linux is free and open resource whereas windows is a commercial operating system whose source code is inaccessible windows is not customizable as against linux is customizable and a user can modify the code and can change it looks and feels
Explanation:
I hope this helps
To Change the Drop Shadow Just Go to effects on the photo go to drop shadow than change the spread and Distinse and Opasity.
Answer:
hi sorry for not knowing the answer
but please follow have a great day,night, or afternoon
Answer:
b) void xyzfunc (int &myint);
Explanation:
To use the same memory location as the variable in the calling function we have to pass the variable by reference means passing the same address to the function.So to do that we have use & operator which stands for address.
We will do this as following:-
void xyzfunc (int * myint);
Hence the answer is option b.