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

  Рет қаралды 115,310

Jenny's Lectures CS IT

2 жыл бұрын

GATE 2022 Exam Analysis: unacademy.com/event/testseries/GATE2022
GATE Subscription: unacademy.com/goal/gate-ese/PESHE/subscribe

Пікірлер: 156
@RD-tv4du
@RD-tv4du 2 жыл бұрын
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!! 🕉️
@Nbeastshorts
@Nbeastshorts Жыл бұрын
just WHATTT!
@maninform3523
@maninform3523 Жыл бұрын
thats incredible i hope the best for you
@VINCENZO_012
@VINCENZO_012 10 ай бұрын
what you gonna do by learning c programming at that age
@RD-tv4du
@RD-tv4du 10 ай бұрын
@@VINCENZO_012 Learning never stops.
@Shraddhaz_Guitar_Vibes
@Shraddhaz_Guitar_Vibes 6 ай бұрын
But Why are you learning programming at this age ??
@iasaspirant1441
@iasaspirant1441 2 жыл бұрын
mam successfully completed c program in my sem 3 its late but its time to start compitative coding love you mam
@alaaanees9955
@alaaanees9955 Жыл бұрын
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!
@alaaanees9955
@alaaanees9955 Жыл бұрын
finally I have just finished the series of file handling, It was really enjoyable! Thank you ma'am you rocked it!
@pruthvireddy7766
@pruthvireddy7766 8 ай бұрын
Me* watching this video before one day of exam 😂
@narayananishanth7357
@narayananishanth7357 9 ай бұрын
I was badly struggling with files chapter. Your lectures brought great clarity . Thanks
@shatakjourney
@shatakjourney 2 жыл бұрын
Waaaaaaaaaaaaaaaah 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
@parisa9374
@parisa9374 2 жыл бұрын
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
@neeln7_147
@neeln7_147 2 жыл бұрын
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
@hopealive3013
@hopealive3013 2 жыл бұрын
ma'am I solved it by my own ! 😁 I wonder how to move contents of one file to another rather copying👀🤔
@ishasethi_
@ishasethi_ 2 жыл бұрын
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 😊❤️
@nenavathsuresh7350
@nenavathsuresh7350 2 жыл бұрын
Hlo Is c series is completed or there are topics remaining in c series let me know
@techpiano7010
@techpiano7010 Жыл бұрын
Thank you madam! No words to say such a good explanation!😇
@jaydipravat1788
@jaydipravat1788 2 жыл бұрын
Your voice is best mem👌🙂
@srai2154
@srai2154 2 жыл бұрын
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 🙏
@prathameshnale2192
@prathameshnale2192 Жыл бұрын
I don't think that there will be a better explanation in any other channel rather than this
@j.sathyavathi5880
@j.sathyavathi5880 4 ай бұрын
Nice handwriting mam thanks 🙏
@Priyadharshini-vz2sq
@Priyadharshini-vz2sq 4 ай бұрын
Mam ,we can do this program in turbo c++? Whether it works?
@sekhar1850
@sekhar1850 Жыл бұрын
❤️love u mam so sweet...🤗 I love ur way of teaching mam..❤️ Ur best teacher ever.. 💥
@rohitrawatrr0754
@rohitrawatrr0754 Жыл бұрын
@msekhar75 tharki bsdk
@rohitrawatrr0754
@rohitrawatrr0754 Жыл бұрын
bhabhi hai tere vo
@mettaswathi7932
@mettaswathi7932 2 жыл бұрын
Thank you mam Mam can u please do video on accessing arguments through command line argument in c language
@SomilSrivastava2406
@SomilSrivastava2406 2 жыл бұрын
😯
@mayanksharma5540
@mayanksharma5540 2 жыл бұрын
Hello dear jenny maim please upload some videos for Theory of Computation
@dipak_dpk4905
@dipak_dpk4905 2 жыл бұрын
Mam your explanation is really very nice and your voice is so nice ❤️
@sivanipriyasenthilkumar8457
@sivanipriyasenthilkumar8457 Жыл бұрын
Hi Mam. I tried to use seek() function in a+ mode. But although I change the destination of the cursor to any position a+ adds the element only at the end. So seek() function is only used in r+ and r modes?
@sarithaadilla7169
@sarithaadilla7169 2 жыл бұрын
mam,Thank u for sharing the programming in c. I easily understanding the programming in c. plz share the more videos.
@marbles5590
@marbles5590 Жыл бұрын
Thank you for this vid. This is for the assignment btw: //copy content of a file into another file #include #include int main() { FILE *fptr1, *fptr2; char ch; fptr1= fptr2=NULL; fptr1 = fopen("abc.txt", "r"); if(fptr1==NULL) { printf ("ERROR"); exit(1); } fptr2=fopen("destination.txt", "w+"); if(fptr2==NULL) { printf ("ERROR"); exit(1); } while((ch=fgetc(fptr1))!=EOF) { fputc(ch, fptr2); } printf (" SUCCESFULLY COPIED. "); fclose(fptr1); rewind(fptr2); printf (" Reading file in the other file: "); while((ch=fgetc(fptr2))!=EOF) { printf ("%c", ch); } fclose(fptr2); return 0; }
@dhananjayapattnaik7428
@dhananjayapattnaik7428 2 жыл бұрын
Hi can you explain recursion ...and how to implement in sorting..
@learningcomputerwithtmkhan6087
@learningcomputerwithtmkhan6087 2 жыл бұрын
Can you tell me how can I get print out of source code and output on the printer. Is any command like basic language (llist or lprint)
@pravallika_09
@pravallika_09 2 жыл бұрын
Mam can u explain the , ,
@priyansh6978
@priyansh6978 2 жыл бұрын
i don't know mam what u gonna feel but u r my first ever crush..... since i have seen ur first programing video idk i was just melt on u..... pls don't mind not in bad way.....( in respect)..... ur teaching skills are literally @sm...... no words for ur hard work.... and your effort for us..... bhot sara thnxx i wish aap jese teachers hmare du me bhi hote:)
@soumi6720
@soumi6720 2 жыл бұрын
koi female insaan milta h to ho jata h tumlog ka
@priyansh6978
@priyansh6978 2 жыл бұрын
@@soumi6720 bhai tum ni smjhoge
@vikramprasad6785
@vikramprasad6785 2 жыл бұрын
Madam ..How to program the same using fgets and fprintf ?
@moddroidgames5597
@moddroidgames5597 2 жыл бұрын
Happy valentines day mam I love you 😘😘❤❤😍😍
@aparnamane4899
@aparnamane4899 2 жыл бұрын
thank you mam its very very nice to explain mam all file handling concepts😍❤
@nenavathsuresh7350
@nenavathsuresh7350 2 жыл бұрын
Mam start a series on c++ as soon as possible
@mettaswathi7932
@mettaswathi7932 2 жыл бұрын
Super explanation mam Your teaching skills are awesome mam
@harsha_reddy_vlogs
@harsha_reddy_vlogs 8 ай бұрын
You’re cut by seeing u I listen complete video because of just your beauty ❤
@abdulrahimjalloh363
@abdulrahimjalloh363 Жыл бұрын
Assignment to write and read after successfully copied: #include #include 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 "); exit(1); } fptr2=fopen("destination.txt", "w+"); if(fptr2==NULL) { printf("Error, file does not exist "); exit(1); } while((c=fgetc(fptr1)) !=EOF) { fputc(c,fptr2); } rewind(fptr2); while(!feof(fptr2)) { ch=fgetc(fptr2); printf("%c",ch); } printf(" Successfully Copied "); fclose(fptr1); fclose(fptr2); return 0; }
@chotalaluprasad7805
@chotalaluprasad7805 2 жыл бұрын
Nice explanation mam it's very useful me thank you mam i am requesting u do more videos like this please for us
@akshatakulkarni1912
@akshatakulkarni1912 2 жыл бұрын
Tqsm mam, it is very helpful to my exams
@nenavathsuresh7350
@nenavathsuresh7350 2 жыл бұрын
Mam we are eagerly waiting for c++ series
@divyanshbalodhi5642
@divyanshbalodhi5642 2 жыл бұрын
Mazaa aa gayaa ma'am ji🙏
@visheshpurohit1785
@visheshpurohit1785 Жыл бұрын
Mam explanation was very good but your ad of unacademy is quite annoying.
@lazytear
@lazytear 2 жыл бұрын
study pr nazar nhi jata h kya kre
@trishul59
@trishul59 2 жыл бұрын
Mam , how to write Matrix theme in C , like cmatrix without using python , Thanks
@navanet9189
@navanet9189 2 жыл бұрын
Array is a data type or data structure
@_.sahilll08
@_.sahilll08 5 ай бұрын
mam me aapko dekhu ki board ko dekhu aap intni sundar ho :)
@jony-s5m
@jony-s5m 2 жыл бұрын
TQ for all you had for us☺️
@jeelanibasha3984
@jeelanibasha3984 2 жыл бұрын
Mam inspite of putc can we use puts
@tejasaditya551
@tejasaditya551 2 жыл бұрын
Is this the last video in c programming....?
@omkardeshmukh5105
@omkardeshmukh5105 2 жыл бұрын
Beauty with brain💯☺️
@rishikajaiswal11
@rishikajaiswal11 Жыл бұрын
Mam what if i want to copy same content multiple times
@viratbhaiya5751
@viratbhaiya5751 2 жыл бұрын
int n=0; String t="I am telling truth from my heart"; if(t=="true") { for(int i=1;i≥n;i++) { System.out.println("I like you😘😘"); } } Mam I am a student of class 12th and I want to tell my felling through program. I like you infinite times😘😘😘😘there is no else condition.
@ruwanchamara7369
@ruwanchamara7369 2 жыл бұрын
Thank you very much miss jenny...
@azazmohammad2788
@azazmohammad2788 2 жыл бұрын
Mam please don't Stop here , 12 days gone . Make some videos on file (fread, fwrite, refresh, rename, cprintf) And most important minimum one video on a project like, How a customer add, delete update , search customer by I'd or phone number
@arafathdhroba8897
@arafathdhroba8897 2 жыл бұрын
can we do same thing using feof function .it shows some extra character
@chinnatalari5630
@chinnatalari5630 2 жыл бұрын
Mam come to my college and tech you are teaching very vell
@omm13240
@omm13240 2 жыл бұрын
Ma'am plzzzzzzzzzz 🙏 NET computer science last 10 previous year paper solve kra de yearwise,,,, पूरे यूट्यूब पर कही नहीं है 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@khushijain3574
@khushijain3574 2 жыл бұрын
ma'am please made a video on priority queue and its implementation, it is not there in your data structures in c playlist, please ma'am
@MANISH_PARJAPAT_RWA
@MANISH_PARJAPAT_RWA 2 жыл бұрын
Mam AP konsa subject pdhate ho
@temparlokeshtemparlokesh9911
@temparlokeshtemparlokesh9911 2 жыл бұрын
Mam where is the arrays of structure program
@ScenicWinds
@ScenicWinds 2 жыл бұрын
Ma’am, will you please finish your dbms series?
@sharmiladayam5051
@sharmiladayam5051 2 жыл бұрын
Mam please do lectures on cpp
@blackshadow7411
@blackshadow7411 2 жыл бұрын
Veryyyyyyyyyyyyyyyyyyyyyyyy nice.... Nice explanation... Carry on Thnx a lot mam
@biplabmaiti3462
@biplabmaiti3462 2 жыл бұрын
Mam, please improve video quality..
@UnboxingAlert
@UnboxingAlert 2 жыл бұрын
Ma'am please say Hi guys, it motivates me .
@vimalsingh4355
@vimalsingh4355 2 жыл бұрын
ma'am priority queue DSA playlist me add krdo
@Rohitkumar-fg5nf
@Rohitkumar-fg5nf 2 жыл бұрын
Madam please make the video on Java and python please mam
@vimalsingh4355
@vimalsingh4355 2 жыл бұрын
ma'am please explain code for BST and other tree also and add in playlist please
@vibhu.22
@vibhu.22 2 жыл бұрын
Mam I am JEE Aspirant (dropper). I have always been good in academics and I have never got into anything related to CS . And As it's the time to take a call on my career I wish to ask that how do I get an idea of if I can do well in tech field in CSE or decide I have an interest or not. Should I try to watch few course videos to check it out or there are some other qualities or interests that I need to have for pursuing CSE . As I think being good in academics cannot be the criteria to pursue CSE as a career.
@saadsalam
@saadsalam 2 жыл бұрын
Dont go for videos. Buy a book and start practise for each chapter. Videos gone from memory very quickly.
@suno_kuch_accha
@suno_kuch_accha 2 жыл бұрын
Same doubt dear
@blvckstar777
@blvckstar777 2 жыл бұрын
Lecture starts at 2:09
@stranger2654
@stranger2654 Жыл бұрын
HandWriting Classes needed
@godxaman01
@godxaman01 Жыл бұрын
collage to ho ni rhi gate kaha se hogi....😂😂
@beenasharma970
@beenasharma970 2 жыл бұрын
Pls start searching and sorting Binary and linear search And sorting also
@JennyslecturesCSIT
@JennyslecturesCSIT 2 жыл бұрын
Already uploaded.. check out other playlists
@satyanarayana2041
@satyanarayana2041 2 жыл бұрын
Mam please start c++ videos
@MohdZaid-ks9ls
@MohdZaid-ks9ls 2 жыл бұрын
Ma'am you r great🥰🥰
@aakasharora519
@aakasharora519 2 жыл бұрын
Please explain about return() inside if condition
@jagdishkurre54
@jagdishkurre54 2 жыл бұрын
mam please aap hindi me bhi padhaiye jisse hindi medium wale student bhi samajh sake mam please
@Chris-vt6nl
@Chris-vt6nl 2 жыл бұрын
Plz upload video on pointers
@sruthisri6612
@sruthisri6612 2 жыл бұрын
Upload a video to find the rainbow colours using switch case statement mam.
@d.manoharann2290
@d.manoharann2290 2 жыл бұрын
Yes mam..pls upload this video...wanted to know how to do..
@sruthisri6612
@sruthisri6612 2 жыл бұрын
I am a student of 7th mam..actually u have explained that we can use break at the end of many cases...if i do switch program using this i am not getting output mam....
@adilkevin6220
@adilkevin6220 2 жыл бұрын
Please start leetcode solutions tutorial
@Sriradhegovinda
@Sriradhegovinda 2 жыл бұрын
ma"am scanf is not running in my vs code, could u help plzzz...
@RD-tv4du
@RD-tv4du 2 жыл бұрын
Add this line in main() function at the very beginning and you should be fine: - setvbuf(stdout, NULL, _IONBF, 0);
@rsk9130
@rsk9130 9 ай бұрын
very nice mam
@pravallika_09
@pravallika_09 2 жыл бұрын
Plz mam explain this below header files
@kuberbhagat6255
@kuberbhagat6255 2 жыл бұрын
Ma'am what happened to your like button here it's 564 likes only but the views is over 26k😢
@footballmatters894
@footballmatters894 2 жыл бұрын
Fread and fwrite tutorial please...
@sahebraojadhav9727
@sahebraojadhav9727 2 жыл бұрын
Ya cpp for competitive programming
@harikamaths4588
@harikamaths4588 9 ай бұрын
It created but there is no content mam pls rly mam
@sumitmondal127
@sumitmondal127 4 ай бұрын
Check the file path
@samitchaudhary742
@samitchaudhary742 2 жыл бұрын
Thank you ma'am
@emircankocatepe9412
@emircankocatepe9412 Жыл бұрын
it is good to do it with just one loop.
@jithendrasabbisetty4027
@jithendrasabbisetty4027 2 жыл бұрын
Mam we are waiting for java madam
@abdulrahimjalloh363
@abdulrahimjalloh363 Жыл бұрын
Thanks mam, My Ada Lovelace 🌺🌹🏵
@sakshamchhatkuli271
@sakshamchhatkuli271 2 жыл бұрын
thank you so much
@swami200
@swami200 2 жыл бұрын
I don’t know why am I here ! -- ‘A Mechanical Engineer ‘
@yallG
@yallG 2 жыл бұрын
May you disguised as a wannabe computer Scientist
@JEE-ff5pp
@JEE-ff5pp 2 жыл бұрын
Same mei bhi EC se hoon😂
@yallG
@yallG 2 жыл бұрын
@@JEE-ff5pp JSSATEN
@yallG
@yallG 2 жыл бұрын
@@JEE-ff5pp '25
@sufiyanshaikh6156
@sufiyanshaikh6156 2 жыл бұрын
Ma'am please teach us Java
@Kidgame235
@Kidgame235 2 жыл бұрын
PLZ START TUTORIAL IN C++ MAM ..PLZ MAM
@vasusharma6210
@vasusharma6210 2 жыл бұрын
thanks for this..
@vpyadav100
@vpyadav100 2 жыл бұрын
mam aap bahut cute ho aapko dekhkar mera dost chanchal or baki sara dost pagal ho gya hai. agar aap hmme nhi mili to mera sb dost ias bankar aapke jindagi me daka dalega to mujhe bahut bura lagega. i love you mam
@akhilmittal3283
@akhilmittal3283 2 жыл бұрын
tanks mam u r superb mam
@taufikbhai3455
@taufikbhai3455 2 жыл бұрын
I really like you 💕💕
@mq4950
@mq4950 2 жыл бұрын
Amazing
@mq4950
@mq4950 2 жыл бұрын
#superb
@abhishekprasad4078
@abhishekprasad4078 2 жыл бұрын
Beauti with Brain!!!!
Зу-зу Күлпаш 2. Бригадир.
43:03
ASTANATV Movie
Рет қаралды 733 М.
Зу-зу Күлпаш 2. Бригадир.
43:03
ASTANATV Movie
Рет қаралды 733 М.