Discuss Microsoft interview related questions
|
|
 |
|
|
|
|
|
|
New Articles
Combinations in a character array.
Write a program that takes input a char array and outputs all the combinations of the characters in the character array.
Example: consier char array {'a','b','c'}
the output shouold be abc,cab,bac,acb,cba,bca that is all the combinations of characters 'a','b','c'.
N-Queen Problem.
Write a Program to solve N-Queen Problem.
Reverse a string
Reverse a string using recursive function
|
|
|
|
|
|
|
|
|