abC primeri - datoteke/append.c

append.c
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdlib.h>
#include <stdio.h>

int main() {
  FILE *d;
  if ((d = fopen("rand.txt", "a")) == NULL)
    exit(1);

  fprintf(d, "--- konec ---");

  fclose(d);
  return 0;
}

    Nazaj...