fork download
  1. #ifndef HEAP_H
  2. #define HEAP_H
  3.  
  4. void heapify(int a[], int i);
  5. void buildHeap(int a[], int size);
  6. void heapIncreaseKey(int a[], int i, int key);
  7. void heapInsert(int a[], int key);
  8. int heapExtractMax(int a[]);
  9.  
  10. #endif
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: error: ld returned 1 exit status
stdout
Standard output is empty