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,907 questions

51,839 answers

573 users

How to append text to text file in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>
  
void readFile(char file[]) {
    FILE *fp = fopen(file, "r");
       
	char ch;
    while ((ch = fgetc(fp)) != EOF)
        putchar(ch);

    fclose(fp);
}
  
int main()
{
    char file[100] = "d:\\data.txt";
  
    FILE *fp = fopen(file, "a"); // a - append 
    if (fp == NULL) {
        printf("Error open file\n");
        exit(EXIT_FAILURE);
    }
  
    fputs("\njava python", fp); // append text
  
    fclose(fp);
      
    readFile(file);
  
    return 0;
}
   
     
     
     
/*
run:
     
c c++ c#
java python 
  
*/
 

 



answered Jul 7, 2020 by avibootz
edited Jul 8, 2020 by avibootz

Related questions

1 answer 186 views
186 views asked Jul 15, 2015 by avibootz
1 answer 141 views
1 answer 172 views
1 answer 169 views
2 answers 191 views
1 answer 211 views
1 answer 173 views
...