Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
const size_t BUF_SIZE = 1024;
FILE* pFileIn = NULL;
char buf[ BUF_SIZE ];
if ( (pFileIn = fopen( "s1.txt", "rt" )) != NULL )
{
if ( fgets( buf, BUF_SIZE, pFileIn ) != NULL )
{
/* Do something with your string. */
}
else
{
/* Error reading string. */
}
fclose( pFileIn );
}
else
{
/* Error opening file. */
}