online python to c converter

#include <stdio.h>

int main() {
    // Python code to convert
    const char* pythonCode = R"(
# Python code to convert
def convert_to_c():
    print("Hello from Python!")

convert_to_c()
)";

    // Print Python code
    printf("Python Code:\n%s\n\n", pythonCode);

    // C code template
    const char* cCodeTemplate = R"(
#include <stdio.h>

int main() {
    // Converted Python code in C
%s
    return 0;
}
)";

    // Print C code template
    printf("C Code Template:\n%s\n\n", cCodeTemplate);

    // Replacing Python-specific syntax with C syntax
    const char* cCode = R"(
void convert_to_c() {
    printf("Hello from C!\n");
}
)";

    // Print converted C code
    printf("Converted C Code:\n%s\n", cCode);

    return 0;
}