#include <stdio.h>

int main() {
    FILE *fptr;
    fptr=fopen("test.txt","r");
    int n;
    fscanf(fptr,"%d",&n);
    printf("number=%d\n",n);
    fscanf(fptr,"%d",&n);
    printf("number=%d\n",n);
    fscanf(fptr,"%d",&n);
    printf("number=%d\n",n);
    fscanf(fptr,"%d",&n);
    printf("number=%d\n",n);
    fscanf(fptr,"%d",&n);
    printf("number=%d\n",n);

    fclose(fptr);
    return 0;
}
    

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: