TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
R@HUL
NA
8
4.6k
how to copy contents in one file in to another file in c?
Jun 10 2015 3:13 AM
i want to copy contents in one file in to another file.
fPout=fopen("parse.txt","r")
fPin=fopen("dpl.txt","w")
do
{
a = fgetc(fPParse);
fputc(a,fPOut);
}
while(a!=EOF);
i'm using this method but it shows error while compiling like multiple declaration,type mismatch etc. Also i've tried fread function but it doesn't work please help.....
Reply
Answers (
1
)
C# LINQ
datagrid