Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

of there is a interfaces of c language

+2 votes
asked Aug 10, 2025 by anonymous

1 Answer

0 votes
answered Aug 11, 2025 by Peter Minarik (101,340 points)

You can check the reference manual for the standard C library functions.

There aren't any "interfaces" in C like you'd have in C#, Java, etc, because there are no classes in C. However, the header files that serve as interfaces, as in how to use that module/functionality.

If you're talking about C++, then there are classes. Still not "interface" types, but pure abstract classes would be the equivalent of C#/Java interface types.

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...