Code: C
#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;
}
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
