C language is middle level language , it has very few libraries for high level Tasks/Applications. like GUI,Gaming.
C is mostly used when hardware related stuffs required like device driver, firmware.
AI needs multitasking , high level algorithms supports and matrix manipulation , so C PL can’t provides ease of do that, if you try to do so your program gets very big as well as clumsy . So better you use C++/Python which has already well developed libraries that provides API for developing your high end application.
Let’s take example of image processing’ kernel , if you trying to implement in ...