Linux Search Pattern Question: Download Search Pattern PDF

Do you know what is the output of this program?

#include<stdio.h>
#include<fcntl.h>

int main()
{
int fd, count;
fd = open("google.txt",O_WRONLY|O_CREAT);
count = write(fd,"Linux System Programming",5);
if(count != 5)
perror("write");
return 0;
}
a) it will create a file "google.txt" in the present working directory
b) it will write the string "Linux System Programming" in the file "google.txt"
c) both (a) and (b)
d) none of the mentioned

Tweet Share WhatsApp