reset style matplotlib

To reset the style in Matplotlib using the C language, you can use the rcParams module. Here's an example of how you can reset the style:

#include <Python.h>
#include <matplotlibrc.h>

int main() {
    // Reset the style
    matplotlibrc_reset();

    return 0;
}

This code snippet includes the necessary headers and calls the matplotlibrc_reset() function to reset the style in Matplotlib.