Video není dostupné.
Omlouváme se.

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

Sdílet
Vložit
  • čas přidán 6. 02. 2022
  • GATE 2022 Exam Analysis: unacademy.com/...
    GATE Subscription: unacademy.com/...

Komentáře • 156

  • @RD-tv4du
    @RD-tv4du Před 2 lety +35

    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!! 🕉️

  • @iasaspirant1441
    @iasaspirant1441 Před 2 lety +17

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

  • @pruthvireddy7766
    @pruthvireddy7766 Před 6 měsíci +5

    Me* watching this video before one day of exam 😂

  • @alaaanees9955
    @alaaanees9955 Před rokem +3

    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 Před rokem +1

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

  • @harsha_reddy_vlogs
    @harsha_reddy_vlogs Před 6 měsíci +2

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

  • @shatakjourney
    @shatakjourney Před 2 lety +1

    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

  • @hopealive3013
    @hopealive3013 Před 2 lety +8

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

  • @parisa9374
    @parisa9374 Před 2 lety +6

    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 Před 2 lety +1

    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

  • @narayananishanth7357
    @narayananishanth7357 Před 7 měsíci

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

  • @ishasethi_
    @ishasethi_ Před 2 lety +5

    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 Před 2 lety

      Hlo
      Is c series is completed or there are topics remaining in c series let me know

  • @jaydipravat1788
    @jaydipravat1788 Před 2 lety +3

    Your voice is best mem👌🙂

  • @techpiano7010
    @techpiano7010 Před rokem +2

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

  • @srai2154
    @srai2154 Před 2 lety +1

    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 🙏

  • @dipak_dpk4905
    @dipak_dpk4905 Před 2 lety +1

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

  • @j.sathyavathi5880
    @j.sathyavathi5880 Před 2 měsíci

    Nice handwriting mam thanks 🙏

  • @moddroidgames5597
    @moddroidgames5597 Před 2 lety +1

    Happy valentines day mam
    I love you 😘😘❤❤😍😍

  • @sekhar1850
    @sekhar1850 Před rokem +1

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

  • @prathameshnale2192
    @prathameshnale2192 Před rokem

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

  • @mettaswathi7932
    @mettaswathi7932 Před 2 lety +1

    Thank you mam
    Mam can u please do video on accessing arguments through command line argument in c language

  • @nenavathsuresh7350
    @nenavathsuresh7350 Před 2 lety +2

    Mam we are eagerly waiting for c++ series

  • @abdulrahimjalloh363
    @abdulrahimjalloh363 Před 10 měsíci +1

    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;
    }

  • @aparnamane4899
    @aparnamane4899 Před rokem

    thank you mam its very very nice to explain mam all file handling concepts😍❤

  • @mettaswathi7932
    @mettaswathi7932 Před 2 lety

    Super explanation mam
    Your teaching skills are awesome mam

  • @106_naveen4
    @106_naveen4 Před 2 lety +1

    TQ for all you had for us☺️

  • @sarithaadilla7169
    @sarithaadilla7169 Před 2 lety

    mam,Thank u for sharing the programming in c. I easily understanding the programming in c. plz share the more videos.

  • @nenavathsuresh7350
    @nenavathsuresh7350 Před 2 lety +1

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

  • @mayanksharma5540
    @mayanksharma5540 Před 2 lety +2

    Hello dear jenny maim please upload some videos for Theory of Computation

  • @marbles5590
    @marbles5590 Před rokem +1

    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;
    }

  • @divyanshbalodhi5642
    @divyanshbalodhi5642 Před 2 lety +1

    Mazaa aa gayaa ma'am ji🙏

  • @blackshadow7411
    @blackshadow7411 Před 2 lety

    Veryyyyyyyyyyyyyyyyyyyyyyyy nice....
    Nice explanation...
    Carry on
    Thnx a lot mam

  • @akshatakulkarni1912
    @akshatakulkarni1912 Před 2 lety

    Tqsm mam, it is very helpful to my exams

  • @chotalaluprasad7805
    @chotalaluprasad7805 Před 2 lety

    Nice explanation mam it's very useful me thank you mam i am requesting u do more videos like this please for us

  • @dhananjayapattnaik7428
    @dhananjayapattnaik7428 Před 2 lety +1

    Hi can you explain recursion ...and how to implement in sorting..

  • @omkardeshmukh5105
    @omkardeshmukh5105 Před 2 lety

    Beauty with brain💯☺️

  • @ruwanchamara7369
    @ruwanchamara7369 Před 2 lety

    Thank you very much miss jenny...

  • @priyansh6978
    @priyansh6978 Před 2 lety +1

    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 Před 2 lety

      koi female insaan milta h to ho jata h tumlog ka

    • @priyansh6978
      @priyansh6978 Před 2 lety

      @@soumi6720 bhai tum ni smjhoge

  • @viratbhaiya5751
    @viratbhaiya5751 Před 2 lety +1

    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.

  • @stranger2654
    @stranger2654 Před rokem

    HandWriting Classes needed

  • @navanet9189
    @navanet9189 Před 2 lety +1

    Array is a data type or data structure

  • @chinnatalari5630
    @chinnatalari5630 Před 2 lety

    Mam come to my college and tech you are teaching very vell

  • @MohdZaid-ks9ls
    @MohdZaid-ks9ls Před 2 lety

    Ma'am you r great🥰🥰

  • @_.sahilll08
    @_.sahilll08 Před 3 měsíci

    mam me aapko dekhu ki board ko dekhu aap intni sundar ho :)

  • @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?

  • @lazytear
    @lazytear Před 2 lety +1

    study pr nazar nhi jata h kya kre

  • @azazmohammad2788
    @azazmohammad2788 Před 2 lety +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

  • @vibhu.22
    @vibhu.22 Před 2 lety +1

    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 Před 2 lety +1

      Dont go for videos. Buy a book and start practise for each chapter. Videos gone from memory very quickly.

    • @letslivealife9548
      @letslivealife9548 Před 2 lety

      Same doubt dear

  • @learningcomputerwithtmkhan6087

    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)

  • @rsk9130
    @rsk9130 Před 6 měsíci

    very nice mam

  • @UnboxingAlert
    @UnboxingAlert Před 2 lety

    Ma'am please say Hi guys, it
    motivates me .

  • @khushijain3574
    @khushijain3574 Před 2 lety

    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

  • @pravallika_09
    @pravallika_09 Před 2 lety

    Mam can u explain the , ,

  • @samitchaudhary742
    @samitchaudhary742 Před 2 lety

    Thank you ma'am

  • @jeelanibasha3984
    @jeelanibasha3984 Před rokem +1

    Mam inspite of putc can we use puts

  • @abdulrahimjalloh363
    @abdulrahimjalloh363 Před 10 měsíci

    Thanks mam, My Ada Lovelace 🌺🌹🏵

  • @sakshamchhatkuli271
    @sakshamchhatkuli271 Před rokem

    thank you so much

  • @Priyadharshini-vz2sq
    @Priyadharshini-vz2sq Před 2 měsíci

    Mam ,we can do this program in turbo c++?
    Whether it works?

  • @sharmiladayam5051
    @sharmiladayam5051 Před 2 lety

    Mam please do lectures on cpp

  • @omm13240
    @omm13240 Před 2 lety

    Ma'am plzzzzzzzzzz 🙏 NET computer science last 10 previous year paper solve kra de yearwise,,,,
    पूरे यूट्यूब पर कही नहीं है 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏

  • @trishul59
    @trishul59 Před 2 lety

    Mam , how to write Matrix theme in C , like cmatrix without using python ,
    Thanks

  • @vikramprasad6785
    @vikramprasad6785 Před 2 lety

    Madam ..How to program the same using fgets and fprintf ?

  • @Kidgame235
    @Kidgame235 Před 2 lety

    PLZ START TUTORIAL IN C++ MAM ..PLZ MAM

  • @vimalsingh4355
    @vimalsingh4355 Před 2 lety

    ma'am please explain code for BST and other tree also and add in playlist please

  • @beenasharma970
    @beenasharma970 Před 2 lety

    Pls start searching and sorting
    Binary and linear search
    And sorting also

  • @vasusharma6210
    @vasusharma6210 Před 2 lety

    thanks for this..

  • @akhilmittal3283
    @akhilmittal3283 Před 2 lety

    tanks mam u r superb mam

  • @aakasharora519
    @aakasharora519 Před 2 lety

    Please explain about return() inside if condition

  • @Rohitkumar-fg5nf
    @Rohitkumar-fg5nf Před 2 lety

    Madam please make the video on Java and python please mam

  • @emircankocatepe9412
    @emircankocatepe9412 Před rokem

    it is good to do it with just one loop.

  • @jagdishkurre54
    @jagdishkurre54 Před 2 lety +1

    mam please aap hindi me bhi padhaiye jisse hindi medium wale student bhi samajh sake
    mam please

  • @adilkevin6220
    @adilkevin6220 Před 2 lety

    Please start leetcode solutions tutorial

  • @vimalsingh4355
    @vimalsingh4355 Před 2 lety

    ma'am priority queue DSA playlist me add krdo

  • @satyanarayana2041
    @satyanarayana2041 Před 2 lety

    Mam please start c++ videos

  • @sruthisri6612
    @sruthisri6612 Před 2 lety

    Upload a video to find the rainbow colours using switch case statement mam.

    • @d.manoharann2290
      @d.manoharann2290 Před 2 lety

      Yes mam..pls upload this video...wanted to know how to do..

    • @sruthisri6612
      @sruthisri6612 Před 2 lety

      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....

  • @vpyadav100
    @vpyadav100 Před 2 lety +1

    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

  • @temparlokeshtemparlokesh9911

    Mam where is the arrays of structure program

  • @arafathdhroba8897
    @arafathdhroba8897 Před rokem

    can we do same thing using feof function .it shows some extra character

  • @rishikajaiswal11
    @rishikajaiswal11 Před rokem

    Mam what if i want to copy same content multiple times

  • @footballmatters894
    @footballmatters894 Před 2 lety

    Fread and fwrite tutorial please...

  • @jithendrasabbisetty4027

    Mam we are waiting for java madam

  • @visheshpurohit1785
    @visheshpurohit1785 Před rokem

    Mam explanation was very good but your ad of unacademy is quite annoying.

  • @swami200
    @swami200 Před 2 lety +2

    I don’t know why am I here !
    -- ‘A Mechanical Engineer ‘

    • @yallG
      @yallG Před 2 lety

      May you disguised as a wannabe computer Scientist

    • @JEE-ff5pp
      @JEE-ff5pp Před 2 lety +1

      Same mei bhi EC se hoon😂

    • @yallG
      @yallG Před 2 lety

      @@JEE-ff5pp JSSATEN

    • @yallG
      @yallG Před 2 lety

      @@JEE-ff5pp '25

  • @Chris-vt6nl
    @Chris-vt6nl Před 2 lety

    Plz upload video on pointers

  • @mq4950
    @mq4950 Před 2 lety

    Amazing

  • @StoicPhilosopher821
    @StoicPhilosopher821 Před 2 lety

    Ma’am, will you please finish your dbms series?

  • @mq4950
    @mq4950 Před 2 lety

    #superb

  • @biplabmaiti3462
    @biplabmaiti3462 Před 2 lety

    Mam, please improve video quality..

  • @pravallika_09
    @pravallika_09 Před 2 lety

    Plz mam explain this below header files

  • @sahebraojadhav9727
    @sahebraojadhav9727 Před 2 lety

    Ya cpp for competitive programming

  • @mike_skandal
    @mike_skandal Před 2 lety

    Lecture starts at 2:09

  • @tejasaditya551
    @tejasaditya551 Před 2 lety

    Is this the last video in c programming....?

  • @taufikbhai3455
    @taufikbhai3455 Před 2 lety +1

    I really like you 💕💕

  • @sufiyanshaikh6156
    @sufiyanshaikh6156 Před 2 lety

    Ma'am please teach us Java

  • @Sriradhegovinda
    @Sriradhegovinda Před 2 lety

    ma"am
    scanf is not running in my vs code, could u help plzzz...

    • @RD-tv4du
      @RD-tv4du Před 2 lety

      Add this line in main() function at the very beginning and you should be fine: -
      setvbuf(stdout, NULL, _IONBF, 0);

  • @abhishekprasad4078
    @abhishekprasad4078 Před 2 lety

    Beauti with Brain!!!!

  • @harikamaths4588
    @harikamaths4588 Před 6 měsíci

    It created but there is no content mam pls rly mam

  • @MANISH_PARJAPAT_RWA
    @MANISH_PARJAPAT_RWA Před 2 lety

    Mam AP konsa subject pdhate ho

  • @cryptotechcoder
    @cryptotechcoder Před rokem

    🎉

  • @godxaman01
    @godxaman01 Před rokem

    collage to ho ni rhi gate kaha se hogi....😂😂