.In the recent past Sahara Limited did a fraud as its top officials had put the investors interest at stake. Inspite of the growing realization all over the world regarding social responsibility of business, profits play a dominant role for such businesses. In the light of the above case, answer the following questions: (a) Explain any two pints which highlight the role of profit in business. (b) Sahara Ltd is a public company. How a public company different from a private company. (any two) (c) Give two similarities between company and cooperative societies form of business organization on any two basis
Answers
Answered by
0
Answer:
// function to print a row
void printn(int num)
{
// base case
if (num == 0)
return;
cout << "* ";
// recursively calling printn()
printn(num - 1);
}
// function to print the pattern
void pattern(int n, int i)
{
// base case
if (n == 0)
return;
printn(i);
cout << endl;
// recursively calling pattern()
pattern(n - 1, i + 1);
}
// driver function
int main()
{
int n = 5;
pattern(n, 1);
return 0;
}
Explanation:
Similar questions