Error In

Discussion in 'C' started by fob500, Jul 12, 2009.

Thread Status:
Not open for further replies.
  1. fob500

    fob500 New Member

    Joined:
    Jul 12, 2009
    Messages:
    24
    Likes Received:
    0
    Trophy Points:
    0
    Hi i have just started to read 'beginig unix programming' .Here is a sample code given in the book

    Code:
    #include  <unistd.h>
    #include  <sys/stat.h>
    #include  <fcntl.h>
    #include  <stdlib.h>
    #include<stdio.h>
    int main()
    {
        char c;
        int in, out;
        in = open(“file.in”, O_RDONLY);
        out = open(“file.out”, O_WRONLY|O_CREAT, S_IRUSR|S_IWUSR);
        while(read(in,&c,1) == 1)
             write(out,&c,1);
    return 0;
    }
    
    when i try to compile it the following errors are being displayed..
    Code:
     gcc -o 1 1.c
    1.c: In function ‘main’:
    1.c:10: error: stray ‘\342’ in program
    1.c:10: error: stray ‘\200’ in program
    1.c:10: error: stray ‘\234’ in program
    1.c:10: error: ‘file’ undeclared (first use in this function)
    1.c:10: error: (Each undeclared identifier is reported only once
    1.c:10: error: for each function it appears in.)
    1.c:10: error: stray ‘\342’ in program
    1.c:10: error: stray ‘\200’ in program
    1.c:10: error: stray ‘\235’ in program
    1.c:11: error: stray ‘\342’ in program
    1.c:11: error: stray ‘\200’ in program
    1.c:11: error: stray ‘\234’ in program
    1.c:11: error: stray ‘\342’ in program
    1.c:11: error: stray ‘\200’ in program
    1.c:11: error: stray ‘\235’ in program
    can sum 1 tell whatz going on.Im running this program fron Desktop where i create the file.in which is being copied to file.out in this program.Thanx in advanceC Program
     
    Last edited by a moderator: Jul 13, 2009
  2. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
Thread Status:
Not open for further replies.

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice