Search:

Type: Posts; User: Ardetcho

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    955

    arf...sorry for the tags, I am just beginning....

    arf...sorry for the tags, I am just beginning.
    I'll try to pay attention to this...thank you for your help
  2. Replies
    4
    Views
    955

    Newbie problem: I/O File

    I first made a very simple program to read what is written in a .txt file. This one:
    #include <stdio.h>
    main()
    {

    int N;
    FILE *fp;
    fp=fopen("c:\\baba.txt","r");
    ...
  3. Replies
    4
    Views
    1,252

    hmm...ok. Need a little printf in there...:) ...

    hmm...ok. Need a little printf in there...:)
    Thank you
  4. Replies
    4
    Views
    1,252

    I just want to read a .txt file.I am expecting...

    I just want to read a .txt file.I am expecting fopen to open it and show me what is inside... Am I wrong?

    It is written in the tutorial:"Note that it's possible for fopen to fail even if your...
  5. Replies
    4
    Views
    1,252

    File I/O:simple code problem

    I'm actually beginning with C programming
    I use Dev C++ and I can't open the test file "baba.txt" using the following program:

    #include <stdio.h>
    main()
    {
    FILE *fp;
    ...
Results 1 to 5 of 8