c++ code to c code converter

#include <iostream>
using namespace std;

int main() {
  int num = 10;
  if (num > 5) {
    cout << "Number is greater than 5" << endl;
  } else {
    cout << "Number is less than or equal to 5" << endl;
  }
  return 0;
}