online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> #include <stdlib.h> #include <conio.h> int smallest(int arr[], int k, int n); void selection_sort(int arr[], int n); void main() { int arr[10], i, n; printf("\n Enter the number of elements in the array: "); scanf("%d", &n); printf("\n Enter the elements of the array: "); for (i = 0; i < n; i++) { scanf("%d", &arr[i]); } selection_sort(arr, n); printf("\n The sorted array is: \n"); for (i = 0; i < n; i++) { printf(" %d\t", arr[i]); } } //get smallest element from the array int smallest(int arr[], int k, int n) { int pos = k, small = arr[k], i; for (i = k + 1; i < n; i++) { if (arr[i] < small) { small = arr[i]; pos = i; } } return pos; } //find smallest element position calling above function //swap it with the current pass/position of array void selection_sort(int arr[], int n) { int k, pos, temp; for (k = 0; k < n; k++) { pos = smallest(arr, k, n); temp = arr[k]; arr[k] = arr[pos]; arr[pos] = temp; } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue