public static string Terbilang(int x) { string[] bilangan = {"", "satu", "dua", "tiga", "empat", "lima", "enam", "tujuh", "delapan", "sembilan", "sepuluh", "sebelas"}; string temp = ""; if (x < 12) { temp = " " + bilangan[x]; } else if (x < 20)...
By Kumar Gaurav Khanna http://www.codeproject.com/csharp/unsafe_prog.asp Introduction There's always one particular topic that catches the fancy of most C/C++ programmers, and is considered quite complicated and difficult to understand: pointers! Albeit...