Interview Question | C Programming Language

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ก.ย. 2024

ความคิดเห็น • 1.1K

  • @yashpreetsinghkalsi5380
    @yashpreetsinghkalsi5380 ปีที่แล้ว +3930

    same question was asked in my internship interview

    • @Socialmedia......Addiction
      @Socialmedia......Addiction ปีที่แล้ว +72

      Toh answer kya Diya tha?

    • @rajshiromani727
      @rajshiromani727 ปีที่แล้ว +110

      Tb bhi ans ni pta bhai??
      Ans is Hello5😅

    • @TarunSharma-eq3fg
      @TarunSharma-eq3fg ปีที่แล้ว +27

      @@rajshiromani727 but bhai return 0 ka mtlb to yeh nhi hota ki no. of characters 0 hi print krna (I am new in c language 😅)

    • @gulhusain6015
      @gulhusain6015 ปีที่แล้ว +31

      ​​@@TarunSharma-eq3fgare wo main function ka return type h
      int main() function hai n isliye return 0 likh rhe
      Agar void main() likhte to koi value return nhi krani pdti

    • @TarunSharma-eq3fg
      @TarunSharma-eq3fg ปีที่แล้ว +5

      @@gulhusain6015 oh thanks 😅

  • @shubh_m1
    @shubh_m1 ปีที่แล้ว +1654

    Please keep posting videos like this.

    • @Sam_sh02
      @Sam_sh02 ปีที่แล้ว +4

      ​@@nishagwaliya476???

  • @rounakverma8115
    @rounakverma8115 9 หลายเดือนก่อน +132

    This is most common question among all the interviewers, thanku mammm!

  • @rudragajjar454
    @rudragajjar454 ปีที่แล้ว +881

    output is: 'Hello 5' since the printf("Hello"); statement will also be executed

    • @rajshaikh3448
      @rajshaikh3448 ปีที่แล้ว +36

      Bhai bilkul sahi bola

    • @sky333suraj
      @sky333suraj ปีที่แล้ว +79

      The format specifier %d just prints integer.

    • @rudragajjar454
      @rudragajjar454 ปีที่แล้ว +53

      @@sky333suraj yes but the 1st line of code is an assignment statement which are executed from right to left. So the RHS of the assignment which is the command printf("Hello"); is executed first and then it's return value i.e 5 is assigned to variable x

    • @mohammedarifofficial
      @mohammedarifofficial 11 หลายเดือนก่อน +20

      I think "hello 5" is the real answer;

    • @santoshkumargupta6339
      @santoshkumargupta6339 10 หลายเดือนก่อน

      Perfect bro

  • @peak_911
    @peak_911 ปีที่แล้ว +58

    I think this concept of interview qs type videos is very helpful, can you guys make a playlist for interview qs shorts?

  • @SubhadipBarik-ps5ii
    @SubhadipBarik-ps5ii หลายเดือนก่อน +3

    Wow! I am a intermediate C programmer student but literally I also think that the result will be error.
    As the integer variable can't store the character value. Thank you.
    Aise hi critical programming ka short video upload karte raho 🎉

  • @sohamghosh533
    @sohamghosh533 ปีที่แล้ว +659

    Output is "Hello5" not just 5 as it will also execute printf("Hello")

  • @anshu2005
    @anshu2005 ปีที่แล้ว +31

    Hey I am here to thank universe . The universe helped me in getting a seat in Delhi University. Four rounds had gone and I was with no seat. So I prayed to universe , trusted him , posted letters to him and finally he helped me. I am so thankful to universe.

    • @ankitmishra697
      @ankitmishra697 11 หลายเดือนก่อน +3

      🙄 Wow bro... ❤

  • @harshahm0130
    @harshahm0130 ปีที่แล้ว +129

    Actually Output is Hello5 because basically printf primarily does its work of printing the text and count the number characters which stores in x

    • @ratnajaiswal169
      @ratnajaiswal169 ปีที่แล้ว +1

      Is there any way to print only number of characters not the original word in printf ??

    • @K15H4N
      @K15H4N ปีที่แล้ว +2

      ​@@ratnajaiswal169space Instead of word.

    • @iTsRko_
      @iTsRko_ 7 หลายเดือนก่อน +1

      Hello 5

    • @kratika83186
      @kratika83186 3 หลายเดือนก่อน

      @@ratnajaiswal169 yes indeed , use
      int x = strlen(“Hello”);
      and define library function
      #include

    • @wildyoutuber2615
      @wildyoutuber2615 3 หลายเดือนก่อน +2

      what is x not output

  • @pavitrakumarsahu2522
    @pavitrakumarsahu2522 ปีที่แล้ว +17

    Didi aapne c language ko bahut achhe se detail se padhaya hai aise aap c plus plus ka padha do n.
    Hum aap se padhna chahte hai c plus plus. Aapke padhane ka tarika bahut achha hai achhe se samjh me aata hai.

  • @NayanW5
    @NayanW5 ปีที่แล้ว +8

    Wow! Each day you learn something new...

  • @introvertsenpai9968
    @introvertsenpai9968 ปีที่แล้ว +8

    Thank you ma'am, I thought I was good at C language but this was something new for me 😊

  • @rishabshukla5077
    @rishabshukla5077 ปีที่แล้ว +59

    We need more like this

  • @MaaRiGAMINGOP
    @MaaRiGAMINGOP ปีที่แล้ว +4

    First line will give output Hello and assign value to x then second line print 5 combine will be Hello5

  • @technoprogramming4753
    @technoprogramming4753 4 หลายเดือนก่อน +3

    5 because printed function returns lengthy of a string

  • @divine3832
    @divine3832 ปีที่แล้ว +3

    Those who are saying it prints Hello5, try running only int x= printf("Hello"); It will give 'Hello' as output, and if you write the complete code, it will print 'Hello5', meaning, 5 is the answer that x is returning

    • @mn-t8u
      @mn-t8u ปีที่แล้ว

      Is shows error , bro int x sirf integer leta hai to int x ko ham print hello ko kaise print kr skte

  • @sanatani-aatma
    @sanatani-aatma 9 หลายเดือนก่อน +329

    Samjh to nahi aaya but sunke acha laga 😂😂😂

    • @bavyagastya2149
      @bavyagastya2149 8 หลายเดือนก่อน +7

      No. Of character bhai printf function me Hello likha hai there is 5 characters in Hello to screen par output 5 aayega simple

    • @SwingMotor
      @SwingMotor 7 หลายเดือนก่อน +7

      Sanatani ko kab se samaz nhi aa rha ha 😅😅

    • @anuj-13
      @anuj-13 6 หลายเดือนก่อน +1

      😂😊

    • @Justanov
      @Justanov 6 หลายเดือนก่อน +3

      ​@@SwingMotor 😂😂😂

    • @Shrutiyadav_108
      @Shrutiyadav_108 4 หลายเดือนก่อน +11

      ​@@SwingMotor Jo samjha rahi hai vah bhi sanatani hi hai

  • @mansuralikhanpathan4077
    @mansuralikhanpathan4077 ปีที่แล้ว +1

    This video is very useful to meeru 🥳🥳. I hope to find more questions in it, not only in the C language but also in other programming languages for Interview a🙏🏻🙏🏻.

  • @sanket7877
    @sanket7877 ปีที่แล้ว +4

    didi pls aisehi minute concepts which student ignore during interviews , aur laiye. It will be very helpful

  • @we_four_DAPS
    @we_four_DAPS หลายเดือนก่อน +1

    Thank you for such type of informative videos🙌🏻❤️💯🤲🏻🤌🏻

  • @akashsonar6332
    @akashsonar6332 ปีที่แล้ว +18

    These small things make big difference in interview..

  • @Memer09157
    @Memer09157 9 หลายเดือนก่อน +2

    Let me explain that x: 5 and output : Hello5
    Because In c, compiler execute first printf function then it return 5, Hello will print on execution.
    Then 5 will get assign to x, then last printf function print 5.
    As there is not any space or new line, it will print as Hello5.
    Printf function return the no. Of char

  • @meetparmar2107
    @meetparmar2107 ปีที่แล้ว +4

    Int x=(printf("hello world") , 18);
    Was asked in iit kgp mid sem exam.

    • @Majeed-khan-rajputh
      @Majeed-khan-rajputh 11 หลายเดือนก่อน

      i guess that comma is of no use there

    • @sebastian18059
      @sebastian18059 8 หลายเดือนก่อน

      Same cheez hai, hello world hi print hoga

    • @Hloo-z4w
      @Hloo-z4w 2 หลายเดือนก่อน

      What is answer??

  • @Someone16248
    @Someone16248 2 หลายเดือนก่อน

    This is a simple type conversation, the string is a array of character, so it will return the amount of characters it has 😊

  • @kunalmahurkar271il
    @kunalmahurkar271il ปีที่แล้ว +40

    Didi @ApnaCollegeOfficial Correct answer is **Hello 5**
    Because of %d is used length of *hello* also print.

    • @shriyanshu_9k
      @shriyanshu_9k ปีที่แล้ว +2

      Yss

    • @Hbjbsisbehsbsj
      @Hbjbsisbehsbsj 5 หลายเดือนก่อน

      Without space

    • @advaitgadekar6771
      @advaitgadekar6771 5 หลายเดือนก่อน

      But int return only integer walue how hello can home?

    • @QuanAffinity
      @QuanAffinity 3 หลายเดือนก่อน

      Hello5 not Hello 5 no spaces

  • @Reactiverahul
    @Reactiverahul 4 หลายเดือนก่อน +19

    In python
    Output
    Hello
    None

  • @ayushthaware344
    @ayushthaware344 ปีที่แล้ว +1

    Hello5 is correct Output
    The Print statement hello will also be printed, talking about next statement, the length of HELLO that is 5 is printed after that without any space

  • @superbikelover01
    @superbikelover01 ปีที่แล้ว +9

    In this question answer is "HELLO 5" BECAUSE value of int x is how many alphabet in Hello and hello is also print

    • @shikharpahade3959
      @shikharpahade3959 ปีที่แล้ว

      Data type is int , so only integer value will be printed

    • @kanhagarg1525
      @kanhagarg1525 ปีที่แล้ว

      Hello5 without space

    • @DarkMysterioGaming
      @DarkMysterioGaming ปีที่แล้ว

      ​@@shikharpahade3959no bro

    • @superbikelover01
      @superbikelover01 ปีที่แล้ว +1

      @@kanhagarg1525 yes but I mention in this comments for understanding "HELLO5" THIS IS REAL OUTPUT

    • @shriyanshu_9k
      @shriyanshu_9k ปีที่แล้ว

      ​@@shikharpahade3959bhai practical krke check krle....hello5 print ho rha h

  • @sayuri_20
    @sayuri_20 11 หลายเดือนก่อน

    Sis, You really motivate me to study every time I see you. I like You already.

  • @jarvis9263
    @jarvis9263 8 หลายเดือนก่อน +5

    #include
    int main() {
    // Write C code here
    int x = printf("Hello
    ");
    printf("%d
    ",x);
    return 0;
    }
    output --->
    Hello
    6

    • @Exposing.official.
      @Exposing.official. 2 หลายเดือนก่อน

      correct

    • @AkankshaSumanofficial
      @AkankshaSumanofficial 9 วันที่ผ่านมา +1

      Plz explain in words, if possible

    • @Exposing.official.
      @Exposing.official. 9 วันที่ผ่านมา +2

      @@AkankshaSumanofficial I will explain you in a while . I’m busy right now

    • @AkankshaSumanofficial
      @AkankshaSumanofficial 9 วันที่ผ่านมา +2

      @@Exposing.official. oh, thank you so much

    • @Exposing.official.
      @Exposing.official. 8 วันที่ผ่านมา +1

      @@AkankshaSumanofficial
      The code prints "Hello" and then a number on the next line.
      The printf("Hello
      ") function prints "Hello" and returns the number of characters it printed (6, including the newline
      ).
      This return value (6) is stored in the variable x.
      Then, printf("%d
      ", x) prints the value of x, which is 6.

  • @approgrammingdoor1373
    @approgrammingdoor1373 ปีที่แล้ว +3

    One idea to take is, when we r printing the value of x we also used "%d" which represents an int so the output will be
    hello5
    5 = charector of str.

  • @Sattari_01
    @Sattari_01 5 หลายเดือนก่อน +1

    Yr kitni piyri h y...AGR issy hi coding sekhi hoti to aj m programer hota😊

  • @purveshmahendrakar2110
    @purveshmahendrakar2110 ปีที่แล้ว +3

    Make a full length video of understanding this type of concepts

  • @jaykant0007
    @jaykant0007 28 วันที่ผ่านมา

    it will print Hello5 as output, cause printf("Hello"); print Hello and printf("Hello"); has 5 characters and 5 is stored in x. So output is Hello5.

  • @thesniperxd5302
    @thesniperxd5302 4 หลายเดือนก่อน +118

    It's nice to see that not only the first printf function prints the hello string but it also returns a value to complete the int x = code which the next printf function prints as 5 ❤

  • @Rama_Siva
    @Rama_Siva ปีที่แล้ว +14

    I run this program/code answer aya - hello5.🤔

    • @Rama_Siva
      @Rama_Siva 9 หลายเดือนก่อน +1

      ​@@vivekdhamande8350 bro character nahi hai eiaha.😂

    • @sarwanray12
      @sarwanray12 9 หลายเดือนก่อน

      Ha bhai answer hello5 hi ayega isme x ka value kya print hoga questions ye hai uska answer hai 5

  • @sahilmane2601
    @sahilmane2601 10 หลายเดือนก่อน +8

    Some people are saying that the answer is Hello5 but the question is not that what is the output, but it is that what is x and the value of x is 5, not hello5.

    • @Hloo-z4w
      @Hloo-z4w 2 หลายเดือนก่อน

      Unhone poocha screen pe kya show hoga...

  • @Gamers-k2l
    @Gamers-k2l 4 หลายเดือนก่อน +1

    Aise hi logic question banate raho mam 😊

  • @anycontent4u457
    @anycontent4u457 2 หลายเดือนก่อน

    Point 1: Output also includes hello and then 5 will be written like Hello5
    Point2: printf also takes 'space' as a character
    If it was written like "Hello w" then printf will count 5+1+1 = 7 . Output is : Hello w7

  • @sahilchopde1450
    @sahilchopde1450 ปีที่แล้ว +9

    Answer is " Hello5" not only 5 I also run the program

    • @Tbm4545
      @Tbm4545 ปีที่แล้ว +5

      Bete usne x ka value pucha hai na ki kya print hoga,
      Wo jo hello print horaha hao wo uper wali print statement ka ans hai aur uske bad x yani ki 5 print horaha hai, aur udhr new line statement nahi use ki hai isliye wo hello5 ek sath print hoarah hai

    • @luxrayy2041
      @luxrayy2041 10 หลายเดือนก่อน

      ​@@Tbm4545yeahhhh

    • @Hbjbsisbehsbsj
      @Hbjbsisbehsbsj 5 หลายเดือนก่อน

      ​@@Tbm4545 oh

  • @shubhangiagarkar1708
    @shubhangiagarkar1708 5 หลายเดือนก่อน

    Certainly! Here's the corrected code that stores the value returned by `printf` in `x` and returns it:
    ```c
    #include
    int main() {
    int x = printf("hello");
    printf("%d", x);
    return x;
    }
    ```
    This code prints the length of the string "hello" followed by its actual length, and then returns the value of `x`. So the output will be:
    ```
    hello5
    ```
    And the return value of the program will be `5`.

  • @onetofun
    @onetofun ปีที่แล้ว +9

    We want more like this...😇✨

  • @AyoubTahlilHersi
    @AyoubTahlilHersi 4 หลายเดือนก่อน

    Int is an integer and not a character so only the number 5 will be printed as opposed to being an array of characters [ ] such as hello which is 5 characters. so printf function of hello will be printed and then the number of characters in number "5"

  • @ratnajaiswal169
    @ratnajaiswal169 ปีที่แล้ว +4

    It prints Hello5...
    Is there any way to print only number of characters not the original word in printf ??

  • @AkankshaSumanofficial
    @AkankshaSumanofficial 9 วันที่ผ่านมา

    Plz provide some more shorts on C programming

  • @jayrawat3929
    @jayrawat3929 11 หลายเดือนก่อน +3

    Meaningful❤

  • @tgayush1424
    @tgayush1424 ปีที่แล้ว

    Bring more videos like this, or make a large video like this , this types of questions come in OA , and the prefix and postfix thing also common...

  • @Syed6579
    @Syed6579 ปีที่แล้ว +7

    Good question ❤

  • @mukherjee.p
    @mukherjee.p 3 หลายเดือนก่อน

    There's nothing to "think" about this. If you know you know lol.
    You may not be able to just guess the return value out of a random function (random because you typically wouldn't use it like this) right.
    Typically in systems languages, they usually return the "number of bytes written" from printing or writing functions. So there's that.

  • @Aarya_x12
    @Aarya_x12 ปีที่แล้ว +15

    OUTPUT (Hello5) aa rha h

    • @ankitkumar-qi3cd
      @ankitkumar-qi3cd 7 หลายเดือนก่อน

      correct bro, qki phle first wala printf apna Hello print krega, phir baad me next wala printf X ki value print krega :-) then output aayega Hello5

  • @sagaryadu45
    @sagaryadu45 ปีที่แล้ว

    Also it is return blank space and integer value ..

  • @princepexz
    @princepexz ปีที่แล้ว +3

    Intresting

  • @_mukumemories
    @_mukumemories หลายเดือนก่อน

    For X, it's 5 but actual output will be "Hello 5"

  • @cheenu2064
    @cheenu2064 ปีที่แล้ว +19

    Output will be
    Hello5👍

  • @rohityadavmudra
    @rohityadavmudra 11 หลายเดือนก่อน

    IT IS HELPFUL, MAJE MORE SUCH VIDEO'S LIKE THIS ✅♥️🙏

  • @bhavyashah7904
    @bhavyashah7904 ปีที่แล้ว +8

    on screen it will display "Hello 5"

  • @TonyStark-zl3ms
    @TonyStark-zl3ms ปีที่แล้ว

    Thank you mam...keep uploading these types of questions...it enhances our knowledge and help us to clear the interview ❤❤😊

  • @HarshPatel-sk5fd
    @HarshPatel-sk5fd ปีที่แล้ว +6

    output is Hello5

    • @shubhamraut9339
      @shubhamraut9339 ปีที่แล้ว

      Hello 5 , space Miss kar diya tune😊😅

  • @niranjanniru4115
    @niranjanniru4115 2 หลายเดือนก่อน

    its simple that you can uderstang that int datatype always return numbers

  • @rohansapate3890
    @rohansapate3890 ปีที่แล้ว +1

    We want more such shorts on C and Java.

  • @ankitrajarya864
    @ankitrajarya864 24 วันที่ผ่านมา +1

    Didi ans will be hello 5 ❤❤

  • @learningfiru
    @learningfiru 6 หลายเดือนก่อน +2

    hey mam ; may the R8 answer will be "hello5"

    • @advaitgadekar6771
      @advaitgadekar6771 5 หลายเดือนก่อน

      But int return only integer walue how hello can home?

  • @CaptainCoder1
    @CaptainCoder1 ปีที่แล้ว

    Quite simple problem for those who atleast knows the function signature of printf function it return an integer which is equal to number of characters that it has successfully printed in the console screen.

  • @mr.rushold5067
    @mr.rushold5067 หลายเดือนก่อน +1

    Those who are messed up with c++ due to college teaching....😂

  • @suvammagar5287
    @suvammagar5287 4 หลายเดือนก่อน +2

    output is "hello5" but X is equals to 5

  • @boydista_307
    @boydista_307 7 วันที่ผ่านมา

    We can change int main to void main, then there will be no need to write any return value

  • @khazeemakanwal7213
    @khazeemakanwal7213 11 หลายเดือนก่อน

    We want more this type of questions n this answer
    Thank u didi

  • @Anemptysoul
    @Anemptysoul 9 หลายเดือนก่อน

    The answer is not only 5 . It's hello5 as printf("hello"); statement will also execute.

  • @anurag-bh2ug
    @anurag-bh2ug 8 หลายเดือนก่อน +1

    We want more videos like this😊

  • @SidsAnalysis
    @SidsAnalysis 9 หลายเดือนก่อน +1

    Jo printable cheeje hongi unka count number print hoga
    Jaise isme Hello ye sare printable hain Isiliye iska answer 5 aayega
    However isme \0 null character bhi hai but vo printable nhi hai isiliye vo is count me nhi add hoga

  • @mrpaulcreations2172
    @mrpaulcreations2172 ปีที่แล้ว

    5 , print function returns the length of the printed string

  • @PokeBoy-pe8lr
    @PokeBoy-pe8lr 6 หลายเดือนก่อน

    I am a beginner. If c++ is an extended of c ,then why we use “printf” and “cout” to output a statement.

  • @AryanJC07
    @AryanJC07 11 หลายเดือนก่อน

    Yup its simple thanks for sharing ❤

  • @-MustakimMusa
    @-MustakimMusa 7 หลายเดือนก่อน +1

    #include
    int main() {
    // Write C code here
    int x= printf("Hello");
    printf("%d", x);
    return 0;
    }

  • @user-xb3my6zw6r
    @user-xb3my6zw6r 3 หลายเดือนก่อน

    5?The answer should be Hello only right. Because we aren't giving any other command to print number of characters of the string.

  • @gokulakrishnan1008
    @gokulakrishnan1008 5 วันที่ผ่านมา +1

    DOUBT:
    If we put (%f or %lf) instead of %d the output is Hello0.000000
    Whats the reason?

  • @VishalSingh-nn4ne
    @VishalSingh-nn4ne 9 หลายเดือนก่อน

    %d indicates the integer value thats why 5 will be print

  • @chiragamerz
    @chiragamerz 23 วันที่ผ่านมา

    I don't know c but I know python and Java so I just tried and answered correctly

  • @AslamNazeerShaikh
    @AslamNazeerShaikh 4 หลายเดือนก่อน

    Its programming language specific question.. they questions are good for freshers and not for experienced developers.. 😂 these days people are asking inbuilt function's functionalities outcome

  • @SleepyAnteater-qn5op
    @SleepyAnteater-qn5op หลายเดือนก่อน

    Thank you ma'am ❤

  • @deepakmodi9343
    @deepakmodi9343 ปีที่แล้ว

    Mybe answer is 1(if printf is boolean function)
    Or mybe ascii value of each digit
    Or maybe somekind of binary no.
    Edit: 😕

  • @khizraaaah.__
    @khizraaaah.__ 2 หลายเดือนก่อน

    Beauty with brain❤

  • @swanandlaghate5113
    @swanandlaghate5113 11 หลายเดือนก่อน

    मॅडम, मैं भी १२-१३ साल से programming languages पढ रहा, उनमे काम कर रहा हू मगर ये बात मुझे आज पता चली, thanks for updating me! मगर interviewer ये सवाल क्यो ऑर किस लिये पूछता ? इसका कंपनी के कोई भी काम मे उपयोग ही नही???

  • @TIMEZEDFF
    @TIMEZEDFF ปีที่แล้ว +1

    My future dream world Best hacker banung ❤❤❤😊😊

  • @mr.healthbeat5173
    @mr.healthbeat5173 11 หลายเดือนก่อน +2

    I predicted it right in those 3 sec.

  • @muhammad_saad_007
    @muhammad_saad_007 2 หลายเดือนก่อน

    Hello5 not just 5 because we are printing the string too

  • @AmarShinde-b8v
    @AmarShinde-b8v 10 หลายเดือนก่อน

    X is an variable and it's stored the statement that are *hellow world*.

  • @lifeenjoywithme-y9a
    @lifeenjoywithme-y9a 7 วันที่ผ่านมา

    Aaj meri class me yahi padhaya gaya tha❤❤❤

  • @MdRakibulhasan-dq5dh
    @MdRakibulhasan-dq5dh 11 หลายเดือนก่อน

    yes the x value is 5 .if we get this code output .than we have hello5 output

  • @Ankan0_o
    @Ankan0_o 2 หลายเดือนก่อน

    Output is-
    Hello5
    .. go run this code before starting any argument

  • @LEARN9652
    @LEARN9652 10 หลายเดือนก่อน

    Output :Hello5
    Here 5 the number of characters in the string.
    Int type stores integer values.
    %d is used for int ..for printing numbers.

  • @hamzahashmiofficial
    @hamzahashmiofficial ปีที่แล้ว +1

    Intelligent

  • @zimon7182
    @zimon7182 9 หลายเดือนก่อน

    Thank you didi

  • @abhishekkadam3235
    @abhishekkadam3235 3 วันที่ผ่านมา

    Thanks 👍🏻

  • @callofactiongamingchannel2125
    @callofactiongamingchannel2125 หลายเดือนก่อน +1

    huh, matlab jitne character ka word hoga ye usse utne number me convert karke value provide karega?

  • @Report-g1t
    @Report-g1t 3 หลายเดือนก่อน

    Awesome

  • @Gear_5five
    @Gear_5five หลายเดือนก่อน

    The ans is :_5 where (_) is space where printf("_%d"); there was a space there ans is a little bit of space 5

  • @ServerGhost-d8p
    @ServerGhost-d8p 2 หลายเดือนก่อน

    It doesn’t return number of characters but it returns number of bytes. RTFM

  • @AamirKhan-12345-b
    @AamirKhan-12345-b 2 หลายเดือนก่อน

    Good teacher ❤❤

  • @zimon7182
    @zimon7182 9 หลายเดือนก่อน

    Thank you didi❤❤❤