Monday 1 August 2016

Hot Linked Questions

How does C handle EOF? [duplicate]




#include

int main()
{
FILE* f=fopen("book2.txt","r");
char a[200];
while(!feof(f))
{
fscanf(f,"%s",a);

printf("%s ",a);
printf("%d\n",ftell(f));...





No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...