#c

Found 2 articles tagged with #c

Different ways to loop through an array in C

There are several ways to loop through an array in C, and the choice often depends on the specific requirements of your program.

Feb 10, 2024#c#arrays

How to return string from a function in C

It's impossible to use strings without using pointers in C, often recommended to provide clear docs to communicate whether the caller is responsible for freeing the memory.

Jul 05, 2023#c#cpp#how-to