3
votes
C for loop implemented differently than other languages?
If all you want is a simple counting loop, then
for (i=0; i<100; i++) dostuff();
will be fine, and the compiler can optimize it.
If you use a function i …
6
votes
What’s the best way to check if a file exists in C? (cross platform)
Use stat like this:
int file_exist (char *filename)
{
struct stat buffer;
return (stat (filename, &buffer) == 0);
}
…
