C_131 C program to copy content of one file into another file | File Handling in C

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Jenny, hi from Canada!
Even at my age (63 years), I find C language so easy and interesting ONLY because of the way you explain in your videos. Thank you for making me more proficient in C and programming in general! May God bless you!! 🕉️

RD-tvdu
Автор

mam successfully completed c program in my sem 3 its late but its time to start compitative coding love you mam

iasaspirant
Автор

Me* watching this video before one day of exam 😂

pruthvireddy
Автор

I think I'll follow other c tutorials you've created, you really have a good way of teaching. I like that when you're looking at me and say :" right? is it clear? ", it feels scary somehow but It's like I am sitting with you and attending the lesson live😂. God bless you Ma'am!

alaaanees
Автор

finally I have just finished the series of file handling, It was really enjoyable! Thank you ma'am you rocked it!

alaaanees
Автор

I was badly struggling with files chapter. Your lectures brought great clarity . Thanks

narayananishanth
Автор

Thanks ma'am I've learnt c language in last 3 days(I've watched all your video within 3 days) ....and now my concept is clear... thanks a lot ma'am...now I'll fire in exam

neeln_
Автор

kyaaa baat hai very nice teacher i am from electrical engineering background Kaash aap electrical bhi teach karti to achha hota jitna achha aap teach karti hai mam mera man ab electrical se hatkar cs me aa rha hai

shatakjourney
Автор

ma'am I solved it by my own ! 😁 I wonder how to move contents of one file to another rather copying👀🤔

hopealive
Автор

Thank you madam! No words to say such a good explanation!😇

techpiano
Автор

Thankyou so much ma'am for all the efforts that you've put in. Ma'am I request you that please please start series of c++. It would be a great help. Ik it depends on your schedule but please I am learning from you only, I really don't know how will I clear my concepts without your lectures.Thankyou ma'am 😊❤️

ishasethi_
Автор

Dear Jenny, please add more videos quicker if it is possible! It has been 2 weeks since your last content! I hope you are well and staying healthy and safe

parisa
Автор

thank you mam, you are one of my favorite teacher, your tutorial is very helpfull for me in learning c programing, and your way of teaching is osm, thanks a lot mam, and I have a request you to please make a tutorial on c++ please mam 🙏

srai
Автор

Mam your explanation is really very nice and your voice is so nice ❤️

dipak_dpk
Автор

I don't think that there will be a better explanation in any other channel rather than this

prathamesh_
Автор

Assignment to write and read after successfully copied:

#include <stdio.h>
#include <stdlib.h>

int main (void)
{
FILE *fptr1 = NULL, *fptr2 = NULL;
char c;
char ch;


fptr1=fopen("abc.txt", "r");
if(fptr1==NULL)
{
printf("Error, file does not exist\n");
exit(1);
}

fptr2=fopen("destination.txt", "w+");
if(fptr2==NULL)
{
printf("Error, file does not exist\n");
exit(1);
}


while((c=fgetc(fptr1)) !=EOF)
{
fputc(c, fptr2);
}

rewind(fptr2);

while(!feof(fptr2))
{
ch=fgetc(fptr2);
printf("%c", ch);
}
printf("\nSuccessfully Copied\n");

fclose(fptr1);
fclose(fptr2);

return 0;
}

abdulrahimjalloh
Автор

❤️love u mam so sweet...🤗
I love ur way of teaching mam..❤️
Ur best teacher ever.. 💥

sekhar
Автор

You’re cut by seeing u I listen complete video because of just your beauty ❤

harsha_reddy_vlogs
Автор

Mam we are eagerly waiting for c++ series

nenavathsuresh
Автор

Mam start a series on c++ as soon as possible

nenavathsuresh
join shbcf.ru