C、读文件中的一行数据

_bstr_t serverIP;

char temp[100];

memset(temp,0,100);

FILE *fp;
if((fp = fopen("./Setting/datasource.txt","r")) == NULL )
{
    printf("Cannot open file!\n");
}
fgets(temp,100,fp);
serverIP = temp;
fclose(fp);

你可能感兴趣的:(C、读文件中的一行数据)