I have to write a simple program to output 16 bytes of data to a file at 0 and 48th position and have come up with this program:
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
int f = create("test.tmp",774);
if(f>0)
{
write(f,"DEPARTMENT OF CS",16);
lseek(f,48,SEEK_SET);
write(f,"DEPARTMENT OF IS",16);
}
return 0;
}
What is wrong with this? It tells me when I compile using cc 7a.sh -ll that:
undefined to reference to 'create'
creatinstead ofopen, and your test off>0is at best questionable, since0is a valid file descriptor thatopencould in fact return if it were available. I also see no particular reason why you're resorting to POSIX-specific file I/O here instead of the standard C library functions. – Nicholas Knight Jun 5 '11 at 10:04cc 7a.sh -ll? This is a remarkably strange command with which to compile a C++ source file! It doesn't even look like C++ in the file. – Johnsyweb Jun 5 '11 at 10:04