dup and dup2 Example
#include<unistd.h>
#include<stdio.h>
#include<fcntl.h>
int main()
{
int dp,fd=open("outfile",O_WRONLY | O_CREAT|O_TRUNC,0666);
write(fd,"hello\n",6);
dp=dup(1);
puts("before");
dup2(fd,1);
puts("after");
dup2(dp,1);
puts("restore");
return 0;
}
Recent Stories
Top DiscoverSDK Experts
Mendy Bennett
Experienced with Ad network & Ad servers.
Mobile | Ad Networks and 1 more
View Profile
Karen Fitzgerald
7 years in Cross-Platform development.
Mobile | Cross Platform Frameworks
View Profile
X
Compare Products
Select up to three two products to compare by clicking on the compare icon () of each product.
{{compareToolModel.Error}}Now comparing:
{{product.ProductName | createSubstring:25}} X
{{CommentsModel.TotalCount}} Comments
Your Comment