C Programming (Important Questions Set 1)

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • C Programming Lectures: goo.gl/7Eh2SS
    C Programming & Data Structures: Important questions in C programming.
    Topics discussed:
    1. Important questions in C language.
    Follow Neso Academy on Instagram: @nesoacademy(bit.ly/2XP63OE)
    Follow me on Instagram: @jaspreetedu(bit.ly/2YX26E5)
    Contribute: www.nesoacademy...
    Memberships: bit.ly/2U7YSPI
    Books: www.nesoacademy...
    Website ► www.nesoacademy...
    Forum ► forum.nesoacade...
    Facebook ► goo.gl/Nt0PmB
    Twitter ► / nesoacademy
    Music:
    Axol x Alex Skrindo - You [NCS Release]
    #CProgrammingByNeso #CProgramming #CProgrammingQuestions

Комментарии • 466

  • @ParthKawatra
    @ParthKawatra 4 года назад +419

    Hello Neso Academy, Could you please enable all English closed captioning for all of your C programming lectures? I would be grateful if you do that. Because I am deaf so I cannot hear your explanations. Thank you

    • @duffyduck4065
      @duffyduck4065 4 года назад +17

      You can do that on your RUclips app settings

    • @ParthKawatra
      @ParthKawatra 4 года назад +39

      @@duffyduck4065 Buddy, some videos in the playlist are not haviing option to enable captions. Nevermind, I already learned from mycodeschool.

    • @the_aggregate7048
      @the_aggregate7048 4 года назад +11

      @@ParthKawatra all the best parth

    • @jainsahab8549
      @jainsahab8549 3 года назад +3

      @@ParthKawatra bhai plz tell me which is best between ravindra babu rabula sir vs neso academy

    • @adhargupta3441
      @adhargupta3441 3 года назад +7

      @@jainsahab8549 neso academy as it has wide variety of questions and easy explaination as well❤️🤗

  • @beaubreau
    @beaubreau 4 года назад +84

    That moment where I actually understand things :) brings tears to my eyes. Thank you. I am trying to prepare more before I graduate and these lessons are helping so much.

  • @SaurabhKumar-qc6og
    @SaurabhKumar-qc6og 3 года назад +251

    I can't pay you back Neso Academy, but I assure you, once I get a job, I'll surely contribute to this channel. The way you are providing such a nice content for free of cost, it's just amazing!!!

    • @Reptorex
      @Reptorex Год назад +6

      2 saal k baad bhi unemployed 🗿

    • @SaurabhKumar-qc6og
      @SaurabhKumar-qc6og Год назад +10

      @@Reptorex college gye hote to pta hota C programming 1st year me padhate hai. Now calculate the basic maths 😂

    • @Reptorex
      @Reptorex Год назад +3

      2 saal baad ye reply Dene aya payback toh krk ja neso ko 😂😂
      Sorry Bhai meto Gaya nahi clg ese hi Matrix me kaam kr raha hu
      Abhi bhi unemployed h kya bro ?

    • @SaurabhKumar-qc6og
      @SaurabhKumar-qc6og Год назад

      @@Reptorex referral hai?

    • @Reptorex
      @Reptorex 11 месяцев назад

      @@SaurabhKumar-qc6og off campus 🗿

  • @nitinagrawal3184
    @nitinagrawal3184 5 лет назад +120

    Finally You tube recommend something worth to watch.Thanks for the wonderful explanation.

  • @user-cl3vv9vz8x
    @user-cl3vv9vz8x 5 лет назад +23

    char = -128 ~ 127
    unsigned char = 0 ~ 255
    char a = 255
    a(2) = 1111 1111
    1111 1111 = -1
    answer
    a + 10 = 9

  • @connorhorman
    @connorhorman 5 лет назад +25

    In C, Q3 is not guaranteed to work if char is signed, as the result of the narrowing value conversion is either implementation-defined (as the signed-type representation is implementation-define). On compilers which define char as unsigned, it is guaranteed to work and print 9. And this all of course assumes that CHAR_BIT is 8. Just to make you aware that the results are by no means guaranteed by the standard. (if CHAR_BIT is say 16, then it prints 265), and if char is signed using sign-and-magnetude, it prints -117 (as 255 converts in that narrowing value conversion to -127, then -127+10=-117).

    • @sasishushma
      @sasishushma 5 лет назад

      Yes..u r correct..the question should signed char c or unsigned char c to avoid any complier specific results..

    • @royarijit998
      @royarijit998 5 лет назад +1

      255 in binary comes out to be 0b11111111, which comes out to be the same for the binary representation of -1 (0b11111111).. So, for signed representation, 'c' will have a value of -1.. Upon adding 10 to that, it assumes the value 9.. The other case of unsigned representation of the character 'c', has been explained in the video.. However, by default, upon declaration, the 'signed' modifier is chosen for the character..

    • @gogogalian
      @gogogalian 5 лет назад

      @@royarijit998 C does not specify a default sign or integer encoding. The binary representation of -1 could be 0b10101010 for all you know. The default sign could be both signed or unsigned. It's even possible that char has 50 bits.

    • @java_shaileshkushwaha878
      @java_shaileshkushwaha878 4 года назад +9

      In Q3.
      In declaration statement
      Char c=255;
      U can not e specify modifier
      THEN compiler implicit assume by default it is signed
      Range would be
      -128 to 127
      But u assign c=255; na
      This value is already out of range then compiler do cyclic process
      255 is equivalent to - 1
      Then finally c contain - 1
      C=c+10;
      C= - 1 + 10
      C=9;
      Out put is 9
      ( in hole explanation we assume character take 1 byts= 8 bits
      Thank you neso academy

    • @connorhorman
      @connorhorman 4 года назад

      shailesh kushwaha This isn't guaranteed. This assumes a) The compiler defines signed integers as 2s compliment, b) the compiler has bitwise conversion for out-of-range singed integers Both of which are unspecified.
      Also, char on its own is a distinct type from signed char, and it is implementation defined if the type is signed or unsigned. (See en.cppreference.com/w/c/language/arithmetic_types for details).
      Further, this also depends on having 8-bit bytes (CHAR_BIT=8), which is not always true.

  • @abhijitroy1958
    @abhijitroy1958 4 года назад +12

    this is from the legendary category course on youtube , explaination
    on peek

  • @rupeshshete6162
    @rupeshshete6162 4 года назад +5

    6:50 IMP 265mod256=9 remainder

  • @fatihkeskin9900
    @fatihkeskin9900 5 лет назад +23

    This is so great. Pronunciation is better than every other Hindis

  • @Gamechanger..601
    @Gamechanger..601 5 лет назад +19

    Sir i am preparing for gate 2020... ur videos whr in recommendation .. u hv no idea how good u are at teaching.... totally worth watching...

    • @anuragsuryawanshi4177
      @anuragsuryawanshi4177 3 года назад

      Hey wht you doing now

    • @rajaup4036
      @rajaup4036 2 года назад

      @@anuragsuryawanshi4177 chaprasi at vidya mandir school

    • @happyman6844
      @happyman6844 2 года назад +1

      @@rajaup4036 So rude tu lgja na chaprasi

  • @saniyamansuri9607
    @saniyamansuri9607 3 года назад +11

    This questions were just too helpful.
    Glad that I find your channel sir 😀

  • @impulsiveDecider
    @impulsiveDecider 2 года назад +8

    I would strongly advise you to include to which standard you are adhering. After C99 using implicit integer will at least throw a compiler warning and depending on parameters will not even compile.

  • @oviya.n1317
    @oviya.n1317 3 года назад +2

    The 2s comp representation of a signed num is -3 = 101 only so when treated as a positive num it is 5 .

  • @saswatpradhan5549
    @saswatpradhan5549 5 лет назад +7

    I am so lucky to have found your channel 😊

  • @Dontever_throw_trash_out
    @Dontever_throw_trash_out 6 лет назад +49

    nice lectures by you sir
    that too for free!
    appreciated your efforts.

  • @aryanpatial650
    @aryanpatial650 4 года назад +14

    Sir in question number 3 maximum value of char should be 127 ?. I am confused sir

    • @pratibhaias3629
      @pratibhaias3629 3 года назад +1

      No!
      Char take 1 byte space having 8 bits ... and so the max range will be 255 ...

    • @bharath_rbp
      @bharath_rbp 3 года назад

      Char occupies 1 byte of memory and there is no point of signed and unsigned, since the binary representation will be same for both. Look into video 9

  • @gyansagar9118
    @gyansagar9118 Месяц назад +1

    Q3 : char c is signed character , so c= 255 is equivalent to c = -1 and -1 + 10 = 9.

  • @sid9145
    @sid9145 2 года назад +1

    2:49 no one teach us this one...its very helpfull

  • @nandannswamy4250
    @nandannswamy4250 5 лет назад +7

    I never saw someone explains like this👏

  • @ctyxyxy8908
    @ctyxyxy8908 2 года назад +1

    I must say that this is best channel on youtube to learn programming

  • @vakhariyajay2224
    @vakhariyajay2224 2 года назад +2

    Thank you very much. You are a genius 👍👍🔝🔝

  • @royankit126
    @royankit126 3 года назад +1

    In question 3 there sholud be unsigned, otherwise it can not hold 255

  • @pranjitdas1467
    @pranjitdas1467 5 лет назад +10

    App agar c programming sikhane lag gaye to case hi nehi hain... Many engineering graduate will be beneficial from thiz... With the help ur videos we passed the exam of digital logic, basic eletronics subject... Who ever you r... U r in the in the heart sir....

  • @himanshubillorePeoplesoftHRMS
    @himanshubillorePeoplesoftHRMS 2 года назад

    in Q1, no need to write %s in the printf. Can just pass the string directly like printf("Hello\a
    ");

  • @Vijay-uc5yd
    @Vijay-uc5yd 5 лет назад +6

    Thank u so much sir actually i like tge way u were teaching it helped me a lot🙇

  • @sadashivsabale139
    @sadashivsabale139 5 лет назад +5

    Thank you do much sir it was very helpful for me

  • @haowenwei3256
    @haowenwei3256 4 года назад +3

    So good... finally got something really useful

  • @sarthvidekar8071
    @sarthvidekar8071 5 лет назад +35

    Thank you soo much sir . I'm nothing without NASO academy . 😇
    I cleared my entire engineering b'cos of you only . 😃
    If i got a chance to meet you , it's been an one of the memorable moment in my life . 🤗

  • @atkuriajaykumar3701
    @atkuriajaykumar3701 5 лет назад +13

    thank you sir helping for my placement

  • @jupjyotkhosla4640
    @jupjyotkhosla4640 3 года назад +7

    Great variety of questions! Loving the content

  • @shefatabassum5807
    @shefatabassum5807 Год назад

    Character is capable of holding the information upto 1byte only which is equal to 8bits (that means the max value it can hold is 255)
    Data types obey the law of arithmetic modulo 2 raised to the power n where n is equal to 8 in this case
    Here ans is 265 mod 2 raised to the power 8

  • @shivani6829
    @shivani6829 4 года назад +1

    Very nice and very useful thank you sir

  • @accessdenied9393
    @accessdenied9393 3 года назад +3

    "signed i = value" equivalent to "int i = value", why? because when you write the signed modifier without any data-type after it, your compiler assume that i is either a variable of type int or it's a variable of type char, and that assumption depends on the value stored in i.

    • @impulsiveDecider
      @impulsiveDecider 2 года назад

      Depending on compiler and standard, this will probably either give you a warning or not compile at all (implicit type conversion is non standard since C 99)

  • @kazi0
    @kazi0 2 года назад

    in this Q why 256divide by 255
    char c=255;
    c=c+10;
    printf("%d",c);
    return0;
    out put is 9

  • @leoneruri6857
    @leoneruri6857 10 месяцев назад +1

    let me be frank, I like your videos and i've learnt a lot from you. Many at times i've been excited and some depressed, like in this video, i thought i understood the concepts until you asked the tough question. In short, thank you for sharpening our experience

  • @akankshasoni3479
    @akankshasoni3479 4 года назад +7

    Really great videos one can refer to these videos for certain competitive exam like gate too. Helped me a lot throughout. Thanks neso academy for such wonderful videos.

  • @Kishor_haldar
    @Kishor_haldar 2 года назад

    Please slove this question..
    write a program to compute the value of u for different values of x at distinct instances of time and plots the series of graphs on u vs plot.

  • @jeevaalok1467
    @jeevaalok1467 3 года назад +1

    When I made the c fragment as like :
    #include
    Int main()
    {
    Printf("%d",printf("%10s","jee"));
    }
    Xpected output as:
    [. jee3]
    But the Output as shown as like this:
    [ jee10 ]
    Plse anyone let me know how's it possible?
    & If I'm wrong then tell me wh're my concept was wrong ...

  • @thalupulasridevi397
    @thalupulasridevi397 3 года назад +2

    A beautiful explanation
    Happy to listen in a simple manner

  • @julchni3189
    @julchni3189 2 года назад +1

    These videos are really helpful, I watch them with my friends on Voicely whenever we practice coding. We all agree that we learned more from RUclips videos than from school lol

  • @nam-ji-ah9375
    @nam-ji-ah9375 2 года назад

    You got a new.. keen curious learner (beginner)of C as subscriber today✌

  • @bharath_rbp
    @bharath_rbp 3 года назад +3

    Suggest from where i can find more questions like these (covering conceptual and hidden meaning of a syntax)

  • @shai_1907
    @shai_1907 3 года назад +1

    Too good for the c programming language.well done

  • @Sunil-pb7iw
    @Sunil-pb7iw 5 лет назад +13

    Such an amazing lecture. Keep it up sir ☺

  • @nancysrivastava8942
    @nancysrivastava8942 2 года назад

    Thank you! I had a pending program since long time.
    Today i was just watching your video when a concept clicked in my mind because of a small concept which learned from your video. My program is completed,i am thankful.

  • @rahulbansode1537
    @rahulbansode1537 5 лет назад +8

    Thanks I learned something new!

  • @johnbode5528
    @johnbode5528 3 года назад +7

    Unfortunately, the answer to Question 3 is a _lot_ more complicated than presented here.
    Depending on the implementation, plain "char" can be either signed _or_ unsigned. The encodings for characters in the _basic character set_ (upper- and lowercase Latin characters, digits, most punctuation) are guaranteed to be non-negative, but encodings for additional characters may be negative or positive. If plain "char" is unsigned, then the value will "wrap" as described. If it's signed, then the behavior is *undefined* . You _may_ get a result of 9. You may get something different.

    • @duggirambabu7792
      @duggirambabu7792 2 года назад

      Signed or unsigned char will give same answer.

    • @Penner3785
      @Penner3785 2 года назад

      actually i get 19

    • @johnbode5528
      @johnbode5528 2 года назад

      @@duggirambabu7792 It _may_ give the same answer, but it isn't guaranteed. Unsigned overflow is well-defined; signed overflow is not. If you're on a system that uses two's complement to represent signed values and doesn't do anything funky on signed overflow, then yes, you are likely to get the same result. On a system that uses ones' complement or sign-magnitude to represent signed values, or raises some exceptional condition on signed overflow, you'll likely get something completely different.

    • @drakecuguli1421
      @drakecuguli1421 Год назад

      @@johnbode5528 if the range of signed char is from -128 to 127, aren't we exceeding the range in this case which means we should divide 265 by 127?

    • @sanjana6931
      @sanjana6931 Год назад

      I got a garbage value

  • @48_subhambanerjee22
    @48_subhambanerjee22 2 года назад +1

    woah so nice questions. i appreciate it

  • @vishalchauhan9832
    @vishalchauhan9832 5 лет назад +2

    Thank you so much for this video. It is very helpful video 🙂

  • @campfiregames4633
    @campfiregames4633 2 года назад

    This is a really important video lecture, thank you very much Neso Academy.

  • @lakshumanakumar8796
    @lakshumanakumar8796 3 года назад

    qus no (3) we use clock analogy method we also get an answer 9

  • @pharshita782
    @pharshita782 2 года назад

    Happy to find your lecture which is very understandable and clear...
    Clear voice👍,,,,,thank you sir

  • @vikasbansal4180
    @vikasbansal4180 2 года назад

    Kya level question hain 🙌🙌

  • @nishathnishu4819
    @nishathnishu4819 5 лет назад +2

    Thank u sirr.....I lyk the way of ur teching

  • @indusmily497
    @indusmily497 4 года назад +1

    I heartfully thanks to neso academy. I learned full course in this channel. It helps alot in my career...

  • @destinyobamwonyi8865
    @destinyobamwonyi8865 Год назад

    10:55 Q5 answer 2^n - 3.

  • @ksvnsmurthy1208
    @ksvnsmurthy1208 4 года назад +2

    In the first question,Have u given space after "!" ,Then the output should be 13 :)

    • @Vitriol-dk3xh
      @Vitriol-dk3xh 4 года назад

      He hasnt given space after '!' char.

  • @vishakasaxena5019
    @vishakasaxena5019 5 лет назад +2

    Really amazing.... Plz make more videos on this topic

  • @sumedhj7917
    @sumedhj7917 3 года назад

    In Q3: The range of signed char is -127 to 128 and for unsigned it is 0 to 255. But in the question it is signed as default. But you said the range is 255 here also? Enlighten me

  • @ARIFKHAN-wx4kf
    @ARIFKHAN-wx4kf Год назад

    Dear Sir, when you were teaching us signed integer and in that you were telling us how to represent -ve no. (Like -127), you were using place value method i.e. -2^7 and 2^0 to set -127. So my question is to you, can we apply same method to represent -3 rather than using 1's comp. Of 3, then adding 1 and finally gets 2's comp. Of -3??
    Regards

  • @adesojialu6208
    @adesojialu6208 2 года назад +1

    at 6:37, how did you explain n =8, how didi you know 2 raise to the power of 8?

  • @ashokhalli550
    @ashokhalli550 3 года назад +1

    Superb

  • @santoshabhinav5851
    @santoshabhinav5851 3 года назад

    awesome advanced questions on basics

  • @Chaudhuri1996
    @Chaudhuri1996 6 лет назад +2

    Nice this is very good and really helpfull video sir , Thank you very much.

  • @rkbestacademy7258
    @rkbestacademy7258 2 года назад

    have a great sir this topic is very helpful video sir.
    Thanks you so much sir

  • @ghantasalajyothihamsaveni6054
    @ghantasalajyothihamsaveni6054 6 месяцев назад

    In question 5
    After converting 3 to two's compliment we had only one zero .
    If we had 2 zeros then how to subtract

  • @ashokreddykarri1238
    @ashokreddykarri1238 2 года назад

    so DS/sometimes water controlled and damshello sirwell done your speech and thank you very much

  • @jhonnyleash4541
    @jhonnyleash4541 2 года назад

    Thank you for this complete and well ordganized Course about C. Very good explained with funny indian accent ;). Long story short : AMAZING. Thanks for sharing.

  • @re1thvarma186
    @re1thvarma186 3 года назад

    But sir!!
    Consider the code:
    Printf("%10s","hello") it prints 5spaces and hello.
    Printf("%1s","hello") it prints 4 characters but not 1 mentioned,i didn't understand that.

  • @amantyagi6057
    @amantyagi6057 3 года назад

    Sir in question 3 there would be default modifier signed and therefore the range would be -128 to +127 so it can't hold 255 I thought so, after watching your answer I get confused...clear this please.

  • @derek2554
    @derek2554 3 года назад +3

    it's showing me no such file or directory in the commnt box in code blocks can u tell me what's is the error

  • @mathankumar1408
    @mathankumar1408 3 года назад

    Thanking you sir
    I learn something new...

  • @RenukaVarma__28
    @RenukaVarma__28 Год назад

    thank you so much..i am preparing for ntpel exam..tis is very useful for me..tysm

  • @mihirjain7903
    @mihirjain7903 4 года назад

    your teaching is awesome

  • @JaspreetSingh-yy5jf
    @JaspreetSingh-yy5jf 4 года назад +2

    great channel, provides really helpful information

    • @mein.likhari
      @mein.likhari 4 года назад +1

      oe, my god, again a co-incidence or what.
      i clicked on the video, and you've also watched it XD
      What are frikking moment

    • @JaspreetSingh-yy5jf
      @JaspreetSingh-yy5jf 4 года назад

      @@mein.likhari lool

  • @naurinsultana1166
    @naurinsultana1166 4 года назад +4

    U r always the best man

  • @riannahenningham341
    @riannahenningham341 2 года назад +2

    sir, with question 3, when i tried working out the mod on my calculator i keep getting 10, does that mean that 10 are the number of characters and 9 is the answer due to starting with 0?

  • @sanjairs6934
    @sanjairs6934 3 года назад

    But in the question there is asked according to definition of integer so Option a is correct .Compiler or Computer will assume as int

  • @Jkt61205
    @Jkt61205 4 года назад +1

    sir your teaching is excellent😀😀;
    and sir please clarify my doubt,it would be very helpful😁.

  • @elliotalderson6609
    @elliotalderson6609 3 года назад +2

    5:48 dude, char is usually signed

  • @mohandmagdy2431
    @mohandmagdy2431 Год назад

    ربنا يباركلك يغالي

  • @krishnachoudhary4924
    @krishnachoudhary4924 2 года назад +3

    Sir for question no.5, I tried the following code with long int and therefore, the size of long int is 8 bytes. Theoretically, I should get an answer different from the one you got but still I got the same answer as you described. Why isn't long int considering 8 bytes rather just 4 bytes?

    • @afrinfathima5405
      @afrinfathima5405 Год назад

      I have an doubt in same question... am just changing the second argument expression as i-j and i get 5,why? Instead of getting 4294967291

    • @afrinfathima5405
      @afrinfathima5405 Год назад

      For ur doubt... May be ur computer holds 4 bytes for long int else long long int holds 8 bytes.

  • @EUPThatsMe
    @EUPThatsMe 4 года назад

    While it is true that most of the loosey goosey C compilers will accept the integer declaration shown in Q4 it is quite bad form to assume that every compiler will behave the same and much better for code readability and portability to explicitly and fully define your types. There is a big difference between what will compile w/o error and good coding practice.

    • @impulsiveDecider
      @impulsiveDecider 2 года назад

      Yeah, exactly. C dropped implicit type conversion a long time ago and it's just plain better than supporting legacy code like that. Especially in uni you usually have strict compilation parameters which are specific to the standard you are using and -pedantic will definitely not let you compile this.

  • @014-neerajajadhav3
    @014-neerajajadhav3 2 года назад

    Great effort sir....no words...for what u had made!!!!

  • @funwithcomedy5859
    @funwithcomedy5859 4 года назад +2

    Can you make a question, answer video of c++ programming exact this type sir

  • @ms.poonguzhaliuthirapathy4760
    @ms.poonguzhaliuthirapathy4760 2 года назад

    I executed [printf("%d","Hello World");] The Output is 4210688 . Why the output is like this ? What is the link between the output and the Input ?

  • @sriramks9628
    @sriramks9628 4 года назад

    Hi sir, i have a doubt regarding q no:1 printf("%s","HELLO WORLD"); will print only HELLO right? ie till space is encountered? Answer should be HELLO 5 ??

  • @achiles6928
    @achiles6928 5 лет назад +2

    Cant understand rhe Q3 where did you get the 2raise to 5*8?

  • @pachaiammadevi2871
    @pachaiammadevi2871 3 года назад

    Super explanation

  • @shreedharchavan7033
    @shreedharchavan7033 3 года назад

    Awesome questions

  • @savagegaming8747
    @savagegaming8747 Год назад

    NO WORD'S TO SAY JUST I LOVE U❤

  • @tanaykamath1415
    @tanaykamath1415 4 года назад +1

    Sir if printf also returns the no. Of characters it successfully prints on the screen then why don't we get 12 twice(once from the internal printf and other from external)??

    • @johnbode5528
      @johnbode5528 2 года назад

      Because they are two separate calls. It’s equivalent to writing
      int tmp = printf( "%s", "Hello, World!" ); // returns 12
      printf( "%d", tmp ); // returns 2

  • @weichenus
    @weichenus 2 года назад

    Good work, I enjoy it.

  • @AshishKhetwal
    @AshishKhetwal 19 дней назад

    in first que, why the answer is not 12Hello World! ? since we put the %d at the beginning of the printf function shouldn't the ans be 12Hello World! ?

  • @MsOfficeLearning
    @MsOfficeLearning 3 года назад

    Thank your for your lesson!

  • @SaoNgoi-nt3ki
    @SaoNgoi-nt3ki Год назад +1

    Q5: why is there 32 bits in -3?

  • @astrix5018
    @astrix5018 Год назад

    thanks you so much for the video

  • @niteshmodi5468
    @niteshmodi5468 3 года назад

    Thanku Neso for this amazing explanation.

  • @priyagarg6844
    @priyagarg6844 5 лет назад +3

    Mind blowing