Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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'

share|improve this question
1  
This is not C++, you're not even building it with a C++ compiler. It's straight C with POSIX functions. There's also no reason to be using creat instead of open, and your test of f>0 is at best questionable, since 0 is a valid file descriptor that open could 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:04
1  
cc 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
2  
774 is definitely wrong. You probably meant 0774. – R.. Jun 5 '11 at 12:51

2 Answers

up vote 6 down vote accepted

There's no function named create

It's named creat

share|improve this answer
how silly of me!!! thks – footy Jun 5 '11 at 10:06
1  
@footy Right from the link: "RATIONALE - The creat() function is redundant. Its services are also provided by the open() function. It has been included primarily for historical purposes since many existing applications depend on it." Why are you using it in new code? – Wiz Jun 5 '11 at 10:42
1  
Ken Thompson was once asked what he would do differently if he were redesigning the UNIX system. His reply: "I'd spell creat with an e." – jbruni Jun 7 '11 at 20:20
#include <stdio.h>

int main ()
{
  FILE * pFile;
  pFile = fopen ( "example.txt" , "w" );
  fputs ( "This is an apple." , pFile );
  fseek ( pFile , 9 , SEEK_SET );
  fputs ( " sam" , pFile );
  fclose ( pFile );
  return 0;
}

via http://www.cplusplus.com/reference/clibrary/cstdio/fseek/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.