In this chapter you will learn:
- How to solve programming problem using array?
Qu1: Write a program to copy one array’s elements to another array without using array function.
Qu2: Reverse a string using array.
Hint: accept string value and store in a string variable str. Then convert str into array as follows:
char[] ch=str.ToCharArray;
Summary
In this chapter you learned how to solve programming problem using array. In the next chapter you will learn the most important topic of C# - Exception Handling