1 2 3 4 5
#ifndef __DSA_H__ #define __DSA_H__ void bubble_sort(int a[], int n); void selection_sort(int a[], int n); #endif // !__DSA_H__