You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
320 B
C

#include<stdio.h>
#include<stdlib.h>
void main()
{
FILE *fp;
char str[50];
fp=fopen("file.txt","r");
if(fp==NULL)
{
printf("File doesn't exist\n");
exit(1);
}
fscanf(fp,"%s",str);
printf("First line of the file: %s",str);
fclose(fp);
}