Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to read the next character from a given input stream (file) in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>

// fgetc - Reads the next character from the given input stream

int main(void)
{
    FILE* fp = NULL;
    char filename[32] = "data.txt";

    if (fopen_s(&fp, filename, "r") != 0) {
        perror("File opening failed");
        return EXIT_FAILURE;
    }

    int ch;
    while ((ch = fgetc(fp)) != EOF) {
        putchar(ch);
    }

    if (ferror(fp))
        puts("\nI/O error when reading");
    else if (feof(fp))
        puts("\nRead file successfully");

    fclose(fp);
}


/*

abcd
efg
hi
Read file successfully

*/

 



answered Dec 28, 2024 by avibootz

Related questions

1 answer 127 views
1 answer 134 views
3 answers 288 views
1 answer 74 views
74 views asked Dec 15, 2022 by avibootz
...