CJCoding With Joseph

Find Second Smallest Element

An array int nums[] = {5, 2, 8, 1, 9, 3} is given. Print the second smallest element. The smallest value is 1, so the second smallest is 2:

2

Print only the number and a newline.

Expected Output:

2
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.